| 2990 | */ |
| 2991 | template<typename StringType> |
| 2992 | static void unescape(StringType& s) |
| 2993 | { |
| 2994 | replace_substring(s, StringType{"~1"}, StringType{"/"}); |
| 2995 | replace_substring(s, StringType{"~0"}, StringType{"~"}); |
| 2996 | } |
| 2997 | |
| 2998 | } // namespace detail |
| 2999 | NLOHMANN_JSON_NAMESPACE_END |
no test coverage detected