| 24364 | /// @sa https://json.nlohmann.me/api/basic_json/operator_literal_json_pointer/ |
| 24365 | JSON_HEDLEY_NON_NULL(1) |
| 24366 | inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t n) |
| 24367 | { |
| 24368 | return nlohmann::json::json_pointer(std::string(s, n)); |
| 24369 | } |
| 24370 | |
| 24371 | } // namespace json_literals |
| 24372 | } // namespace literals |
nothing calls this directly
no test coverage detected