| 25224 | */ |
| 25225 | template<> |
| 25226 | inline void swap<nlohmann::json>(nlohmann::json& j1, nlohmann::json& j2) noexcept( |
| 25227 | is_nothrow_move_constructible<nlohmann::json>::value&& |
| 25228 | is_nothrow_move_assignable<nlohmann::json>::value |
| 25229 | ) |
| 25230 | { |
| 25231 | j1.swap(j2); |
| 25232 | } |
| 25233 | |
| 25234 | #endif |
| 25235 |
nothing calls this directly
no outgoing calls
no test coverage detected