1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-31 10:24:23 +03:00

🚨 fixed warnings

This commit is contained in:
Niels Lohmann
2019-03-15 15:55:52 +01:00
parent 8d6c033f80
commit b02ee16721
5 changed files with 100 additions and 100 deletions

View File

@ -35,7 +35,7 @@ class json_ref
is_rvalue(true) {}
// class should be movable only
json_ref(json_ref&&) = default;
json_ref(json_ref&&) noexcept = default;
json_ref(const json_ref&) = delete;
json_ref& operator=(const json_ref&) = delete;
json_ref& operator=(json_ref&&) = delete;