Update rexylib

This commit is contained in:
rexy712 2020-05-08 22:40:26 -07:00
parent 76431079c6
commit 531304bf8a

View File

@ -44,7 +44,7 @@ namespace raii{
return len;
}
}
template<class T, typename std::enable_if<rexy::detail::is_string<T>::value && !rexy::detail::is_concrete_string<T>::value,void>::type* = nullptr>
template<class T, typename std::enable_if<rexy::is_string<T>::value && !rexy::is_concrete_string<T>::value,void>::type* = nullptr>
rexy::string json_escape(T&& t){
auto tup = t.get();
size_t len = detail::_calc_escaped_len_all(tup);