📝 update output of meta function
This commit is contained in:
parent
6e5be17b62
commit
fad14aabe7
3 changed files with 6 additions and 6 deletions
|
@ -16501,7 +16501,7 @@ class basic_json
|
|||
detail::parser_callback_t<basic_json>cb = nullptr,
|
||||
const bool allow_exceptions = true,
|
||||
const bool ignore_comments = false
|
||||
)
|
||||
)
|
||||
{
|
||||
return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter),
|
||||
std::move(cb), allow_exceptions, ignore_comments);
|
||||
|
@ -16647,7 +16647,7 @@ class basic_json
|
|||
{
|
||||
basic_json result;
|
||||
|
||||
result["copyright"] = "(C) 2013-2017 Niels Lohmann";
|
||||
result["copyright"] = "(C) 2013-2020 Niels Lohmann";
|
||||
result["name"] = "JSON for Modern C++";
|
||||
result["url"] = "https://github.com/nlohmann/json";
|
||||
result["version"]["string"] =
|
||||
|
@ -25041,7 +25041,7 @@ template<>
|
|||
inline void swap<nlohmann::json>(nlohmann::json& j1, nlohmann::json& j2) noexcept(
|
||||
is_nothrow_move_constructible<nlohmann::json>::value&&
|
||||
is_nothrow_move_assignable<nlohmann::json>::value
|
||||
)
|
||||
)
|
||||
{
|
||||
j1.swap(j2);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue