| 10556 | */ |
| 10557 | template<> |
| 10558 | inline void swap(nlohmann::json& j1, |
| 10559 | nlohmann::json& j2) noexcept( |
| 10560 | is_nothrow_move_constructible<nlohmann::json>::value and |
| 10561 | is_nothrow_move_assignable<nlohmann::json>::value |
| 10562 | ) |
| 10563 | { |
| 10564 | j1.swap(j2); |
| 10565 | } |
| 10566 | |
| 10567 | /// hash value for JSON objects |
| 10568 | template<> |
no test coverage detected