🚑 fixed compilation error

parent 6e49d9f5
...@@ -31,10 +31,10 @@ class json_ref ...@@ -31,10 +31,10 @@ class json_ref
{} {}
// class should be movable only // class should be movable only
json_ref(json_ref&&) noexcept = default; json_ref(json_ref&&) = default;
json_ref(const json_ref&) = delete; json_ref(const json_ref&) = delete;
json_ref& operator=(const json_ref&) = delete; json_ref& operator=(const json_ref&) = delete;
json_ref& operator=(json_ref&&) noexcept = default; json_ref& operator=(json_ref&&) = delete;
~json_ref() = default; ~json_ref() = default;
value_type moved_or_copied() const value_type moved_or_copied() const
......
...@@ -10375,10 +10375,10 @@ class json_ref ...@@ -10375,10 +10375,10 @@ class json_ref
{} {}
// class should be movable only // class should be movable only
json_ref(json_ref&&) noexcept = default; json_ref(json_ref&&) = default;
json_ref(const json_ref&) = delete; json_ref(const json_ref&) = delete;
json_ref& operator=(const json_ref&) = delete; json_ref& operator=(const json_ref&) = delete;
json_ref& operator=(json_ref&&) noexcept = default; json_ref& operator=(json_ref&&) = delete;
~json_ref() = default; ~json_ref() = default;
value_type moved_or_copied() const value_type moved_or_copied() const
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment