🔨 cleanup after #663

This commit is contained in:
Niels Lohmann 2017-07-30 20:30:05 +02:00
parent 3d67ec40a6
commit 850d856aae
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
2 changed files with 44 additions and 45 deletions

View file

@ -849,7 +849,9 @@ I deeply appreciate the help of the following people.
- [Steffen](https://github.com/koemeet) fixed a potential issue with MSVC and `std::min`.
- [Mike Tzou](https://github.com/Chocobo1) fixed some typos.
- [amrcode](https://github.com/amrcode) noted a missleading documentation about comparison of floats.
- [Oleg Endo](https://github.com/olegendo) reduced the memory consumption by replacing `<iostream>` with `<iosfwd>`
- [Oleg Endo](https://github.com/olegendo) reduced the memory consumption by replacing `<iostream>` with `<iosfwd>`.
- [dan-42](https://github.com/dan-42) cleaned up the CMake files to simplify including/reusing of the library.
- [Nikita Ofitserov](https://github.com/himikof) allowed for moving values from initializer lists.
Thanks a lot for helping out! Please [let me know](mailto:mail@nlohmann.me) if I forgot someone.
@ -912,7 +914,7 @@ $ make json_unit -Ctest
$ ./test/json_unit "*"
===============================================================================
All tests passed (13391115 assertions in 49 test cases)
All tests passed (14504461 assertions in 48 test cases)
```
Alternatively, you can use [CMake](https://cmake.org) and run

View file

@ -6843,63 +6843,61 @@ class serializer
};
template<typename BasicJsonType>
struct json_ref
class json_ref
{
typedef BasicJsonType value_type;
public:
using value_type = BasicJsonType;
json_ref(value_type&& value)
: owned_value_(std::move(value))
, is_rvalue_(true)
{
value_ref_ = &owned_value_;
}
: owned_value(std::move(value)),
value_ref(&owned_value),
is_rvalue(true)
{}
json_ref(const value_type& value)
: value_ref_(const_cast<value_type*>(&value))
, is_rvalue_(false)
: value_ref(const_cast<value_type*>(&value)),
is_rvalue(false)
{}
json_ref(std::initializer_list<json_ref> init)
: owned_value_(init)
, is_rvalue_(true)
{
value_ref_ = &owned_value_;
}
: owned_value(init),
value_ref(&owned_value),
is_rvalue(true)
{}
template <class... Args>
json_ref(Args... args)
: owned_value_(std::forward<Args>(args)...)
, is_rvalue_(true)
{
value_ref_ = &owned_value_;
}
: owned_value(std::forward<Args>(args)...),
value_ref(&owned_value),
is_rvalue(true)
{}
value_type moved_or_copied() const
{
if (is_rvalue_)
if (is_rvalue)
{
return std::move(*value_ref_);
return std::move(*value_ref);
}
else
{
return *value_ref_;
return *value_ref;
}
}
value_type const& operator*() const
{
return *static_cast<value_type const*>(value_ref_);
return *static_cast<value_type const*>(value_ref);
}
value_type const* operator->() const
{
return static_cast<value_type const*>(value_ref_);
return static_cast<value_type const*>(value_ref);
}
private:
value_type * value_ref_;
mutable value_type owned_value_;
bool is_rvalue_;
mutable value_type owned_value;
value_type* value_ref = nullptr;
const bool is_rvalue;
};
} // namespace detail
@ -8510,7 +8508,7 @@ class basic_json
std::for_each(init.begin(), init.end(), [this](const detail::json_ref<basic_json>& element_ref)
{
basic_json element = element_ref.moved_or_copied();
auto element = element_ref.moved_or_copied();
m_value.object->emplace(
std::move(*((*element.m_value.array)[0].m_value.string)),
std::move((*element.m_value.array)[1]));
@ -8775,8 +8773,7 @@ class basic_json
basic_json(const detail::json_ref<basic_json>& ref)
: basic_json(ref.moved_or_copied())
{
}
{}
/*!
@brief copy constructor
@ -11578,7 +11575,7 @@ class basic_json
@brief add an object to an array
@copydoc push_back(basic_json&&)
*/
reference operator+=(basic_json && val)
reference operator+=(basic_json&& val)
{
push_back(std::move(val));
return *this;