``` C++
std::string web::json::details::_String::as_utf8_string() const
{
if(is_wide())
{
return utf16_to_utf8(unescape_string<utf16char>(m_wstring.get()));
}
else
{
return unescape_string<char>(m_string.get());
}
}
```
should escape_string should be used here?
Comments: @stevetgates Perhaps silly question, but who don't you (regularly) push the current development version of the code to this repository, so we all can use and help in testing of the cutting-edge version? The existing 'development' branch is misleading then, as the repo consists only of released version.
std::string web::json::details::_String::as_utf8_string() const
{
if(is_wide())
{
return utf16_to_utf8(unescape_string<utf16char>(m_wstring.get()));
}
else
{
return unescape_string<char>(m_string.get());
}
}
```
should escape_string should be used here?
Comments: @stevetgates Perhaps silly question, but who don't you (regularly) push the current development version of the code to this repository, so we all can use and help in testing of the cutting-edge version? The existing 'development' branch is misleading then, as the repo consists only of released version.