| 3003 | */ |
| 3004 | template<typename StringType> |
| 3005 | static void unescape(StringType& s) |
| 3006 | { |
| 3007 | replace_substring(s, StringType{"~1"}, StringType{"/"}); |
| 3008 | replace_substring(s, StringType{"~0"}, StringType{"~"}); |
| 3009 | } |
| 3010 | |
| 3011 | } // namespace detail |
| 3012 | NLOHMANN_JSON_NAMESPACE_END |
no test coverage detected