This commit is contained in:
aardvarkk 2018-03-06 20:26:15 +00:00 committed by GitHub
commit 8f3b4d9271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,28 +45,28 @@ SOFTWARE.
#include <string> // string, stoi, to_string
#include <utility> // declval, forward, move, pair, swap
#include <nlohmann/json_fwd.hpp>
#include <nlohmann/detail/macro_scope.hpp>
#include <nlohmann/detail/meta.hpp>
#include <nlohmann/detail/exceptions.hpp>
#include <nlohmann/detail/value_t.hpp>
#include <nlohmann/detail/conversions/from_json.hpp>
#include <nlohmann/detail/conversions/to_json.hpp>
#include <nlohmann/detail/input/input_adapters.hpp>
#include <nlohmann/detail/input/lexer.hpp>
#include <nlohmann/detail/input/parser.hpp>
#include <nlohmann/detail/iterators/primitive_iterator.hpp>
#include <nlohmann/detail/iterators/internal_iterator.hpp>
#include <nlohmann/detail/iterators/iter_impl.hpp>
#include <nlohmann/detail/iterators/iteration_proxy.hpp>
#include <nlohmann/detail/iterators/json_reverse_iterator.hpp>
#include <nlohmann/detail/output/output_adapters.hpp>
#include <nlohmann/detail/input/binary_reader.hpp>
#include <nlohmann/detail/output/binary_writer.hpp>
#include <nlohmann/detail/output/serializer.hpp>
#include <nlohmann/detail/json_ref.hpp>
#include <nlohmann/detail/json_pointer.hpp>
#include <nlohmann/adl_serializer.hpp>
#include "nlohmann/json_fwd.hpp"
#include "nlohmann/detail/macro_scope.hpp"
#include "nlohmann/detail/meta.hpp"
#include "nlohmann/detail/exceptions.hpp"
#include "nlohmann/detail/value_t.hpp"
#include "nlohmann/detail/conversions/from_json.hpp"
#include "nlohmann/detail/conversions/to_json.hpp"
#include "nlohmann/detail/input/input_adapters.hpp"
#include "nlohmann/detail/input/lexer.hpp"
#include "nlohmann/detail/input/parser.hpp"
#include "nlohmann/detail/iterators/primitive_iterator.hpp"
#include "nlohmann/detail/iterators/internal_iterator.hpp"
#include "nlohmann/detail/iterators/iter_impl.hpp"
#include "nlohmann/detail/iterators/iteration_proxy.hpp"
#include "nlohmann/detail/iterators/json_reverse_iterator.hpp"
#include "nlohmann/detail/output/output_adapters.hpp"
#include "nlohmann/detail/input/binary_reader.hpp"
#include "nlohmann/detail/output/binary_writer.hpp"
#include "nlohmann/detail/output/serializer.hpp"
#include "nlohmann/detail/json_ref.hpp"
#include "nlohmann/detail/json_pointer.hpp"
#include "nlohmann/adl_serializer.hpp"
/*!
@brief namespace for Niels Lohmann