| 5231 | inline nlohmann::json::json_pointer operator ""_json_pointer(const char* s, std::size_t n) |
| 5232 | #else |
| 5233 | inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t n) |
| 5234 | #endif |
| 5235 | { |
| 5236 | return nlohmann::json::json_pointer(std::string(s, n)); |
| 5237 | } |
| 5238 | |
| 5239 | } // namespace json_literals |
| 5240 | } // namespace literals |
nothing calls this directly
no test coverage detected