| 967 | |
| 968 | namespace std { |
| 969 | size_t hash<json::value>::operator()(argument_type const & v) const noexcept |
| 970 | { |
| 971 | return json::hash_append(0, v); |
| 972 | } |
| 973 | |
| 974 | size_t |
| 975 | hash<json::object>::operator()(argument_type const & o) const noexcept |
nothing calls this directly
no test coverage detected