mirror of
https://github.com/nlohmann/json.git
synced 2026-07-05 18:15:10 +00:00
6f551930e5
* ⚗️ move CI targets to CMake * ♻️ add target for cpplint * ♻️ add target for self-contained binaries * ♻️ add targets for iwyu and infer * 🥾 add version output * ♻️ add target for oclint * 🎓 fix warnings * ♻️ rename targets * ♻️ use iwyu properly * 🎓 fix warnings * ♻️ use iwyu properly * ♻️ add target for benchmarks * ♻️ add target for CMake flags * 👷 use GitHub Actions * ⚗️ try to install Clang 11 * ⚗️ try to install GCC 11 * ⚗️ try to install Clang 11 * ⚗️ try to install GCC 11 * ⚗️ add clang analyze target * 🦚 remove Google Benchmark * 🤜 Google Benchmark 1.5.2 * 🦚 use fetchcontent * 🍑 add target to download a Linux version of CMake * 🤮 fix dependency * 🎓 fix includes * 🎓 fix comment * 🪝 adjust flags for GCC 11.0.0 20210110 (experimental) * 🏸 user Docker image to run CI * 🪝 add target for Valgrind * 👷 add target for Valgrind tests * ⚗️ add Dart * ⏪ remove Dart * ⚗️ do not call ctest in test subdirectory * ⚗️ download test data explicitly * ⚗️ only execute Valgrind tests * ⚗️ fix labels * 🦚 remove unneeded jobs * 🤮 cleanup * 🚷 fix OCLint call * ✅ add targets for offline and git-independent tests * ✅ add targets for C++ language versions and reproducible tests * 🤮 clean up * 👷 add CI steps for cppcheck and cpplint * 🎓 fix warnings from Clang-Tidy * 👷 add CI steps for Clang-Tidy * 🎓 fix warnings * 🪝 select proper binary * 🎓 fix warnings * 🎓 suppress some unhelpful warnings * 🎓 fix warnings * 🚶 fix format * 🎓 fix warnings * 👷 add CI steps for Sanitizers * 🎓 fix warnings * ⚡ add optimization to sanitizer build * 🎓 fix warnings * 🎓 add missing header * 🎓 fix warnings * 👷 add CI step for coverage * 👷 add CI steps for disabled exceptions and implicit conversions * 🎓 fix warnings * 👷 add CI steps for checking indentation * 🚷 fix variable use * 🧛 fix build * ➖ remove CircleCI * 👷 add CI step for diagnostics * 🎓 fix warning * 🦚 clean Travis
69 lines
1.4 KiB
C++
69 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <initializer_list>
|
|
#include <utility>
|
|
|
|
#include <nlohmann/detail/meta/type_traits.hpp>
|
|
|
|
namespace nlohmann
|
|
{
|
|
namespace detail
|
|
{
|
|
template<typename BasicJsonType>
|
|
class json_ref
|
|
{
|
|
public:
|
|
using value_type = BasicJsonType;
|
|
|
|
json_ref(value_type&& value)
|
|
: owned_value(std::move(value))
|
|
{}
|
|
|
|
json_ref(const value_type& value)
|
|
: value_ref(&value)
|
|
{}
|
|
|
|
json_ref(std::initializer_list<json_ref> init)
|
|
: owned_value(init)
|
|
{}
|
|
|
|
template <
|
|
class... Args,
|
|
enable_if_t<std::is_constructible<value_type, Args...>::value, int> = 0 >
|
|
json_ref(Args && ... args)
|
|
: owned_value(std::forward<Args>(args)...)
|
|
{}
|
|
|
|
// class should be movable only
|
|
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;
|
|
~json_ref() = default;
|
|
|
|
value_type moved_or_copied() const
|
|
{
|
|
if (value_ref == nullptr)
|
|
{
|
|
return std::move(owned_value);
|
|
}
|
|
return *value_ref;
|
|
}
|
|
|
|
value_type const& operator*() const
|
|
{
|
|
return value_ref ? *value_ref : owned_value;
|
|
}
|
|
|
|
value_type const* operator->() const
|
|
{
|
|
return &** this;
|
|
}
|
|
|
|
private:
|
|
mutable value_type owned_value = nullptr;
|
|
value_type const* value_ref = nullptr;
|
|
};
|
|
} // namespace detail
|
|
} // namespace nlohmann
|