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