Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
d8708268
Commit
d8708268
authored
Jan 28, 2017
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🔖
set version to 2.1.0
parent
2f626075
Changes
46
Hide whitespace changes
Inline
Side-by-side
Showing
46 changed files
with
113 additions
and
49 deletions
+113
-49
CMakeLists.txt
CMakeLists.txt
+1
-1
ChangeLog.md
ChangeLog.md
+37
-0
doc/Doxyfile
doc/Doxyfile
+1
-1
doc/index.md
doc/index.md
+1
-1
src/json.hpp
src/json.hpp
+3
-3
src/json.hpp.re2c
src/json.hpp.re2c
+3
-3
test/src/fuzzer-driver_afl.cpp
test/src/fuzzer-driver_afl.cpp
+1
-1
test/src/fuzzer-parse_cbor.cpp
test/src/fuzzer-parse_cbor.cpp
+1
-1
test/src/fuzzer-parse_json.cpp
test/src/fuzzer-parse_json.cpp
+1
-1
test/src/fuzzer-parse_msgpack.cpp
test/src/fuzzer-parse_msgpack.cpp
+1
-1
test/src/unit-algorithms.cpp
test/src/unit-algorithms.cpp
+1
-1
test/src/unit-allocator.cpp
test/src/unit-allocator.cpp
+1
-1
test/src/unit-capacity.cpp
test/src/unit-capacity.cpp
+1
-1
test/src/unit-cbor.cpp
test/src/unit-cbor.cpp
+1
-1
test/src/unit-class_const_iterator.cpp
test/src/unit-class_const_iterator.cpp
+1
-1
test/src/unit-class_iterator.cpp
test/src/unit-class_iterator.cpp
+1
-1
test/src/unit-class_lexer.cpp
test/src/unit-class_lexer.cpp
+1
-1
test/src/unit-class_parser.cpp
test/src/unit-class_parser.cpp
+1
-1
test/src/unit-comparison.cpp
test/src/unit-comparison.cpp
+1
-1
test/src/unit-concepts.cpp
test/src/unit-concepts.cpp
+1
-1
test/src/unit-constructor1.cpp
test/src/unit-constructor1.cpp
+1
-1
test/src/unit-constructor2.cpp
test/src/unit-constructor2.cpp
+1
-1
test/src/unit-convenience.cpp
test/src/unit-convenience.cpp
+1
-1
test/src/unit-conversions.cpp
test/src/unit-conversions.cpp
+1
-1
test/src/unit-deserialization.cpp
test/src/unit-deserialization.cpp
+1
-1
test/src/unit-element_access1.cpp
test/src/unit-element_access1.cpp
+1
-1
test/src/unit-element_access2.cpp
test/src/unit-element_access2.cpp
+1
-1
test/src/unit-inspection.cpp
test/src/unit-inspection.cpp
+1
-1
test/src/unit-iterator_wrapper.cpp
test/src/unit-iterator_wrapper.cpp
+1
-1
test/src/unit-iterators1.cpp
test/src/unit-iterators1.cpp
+1
-1
test/src/unit-iterators2.cpp
test/src/unit-iterators2.cpp
+1
-1
test/src/unit-json_patch.cpp
test/src/unit-json_patch.cpp
+1
-1
test/src/unit-json_pointer.cpp
test/src/unit-json_pointer.cpp
+1
-1
test/src/unit-meta.cpp
test/src/unit-meta.cpp
+1
-1
test/src/unit-modifiers.cpp
test/src/unit-modifiers.cpp
+1
-1
test/src/unit-msgpack.cpp
test/src/unit-msgpack.cpp
+1
-1
test/src/unit-noexcept.cpp
test/src/unit-noexcept.cpp
+28
-1
test/src/unit-pointer_access.cpp
test/src/unit-pointer_access.cpp
+1
-1
test/src/unit-readme.cpp
test/src/unit-readme.cpp
+1
-1
test/src/unit-reference_access.cpp
test/src/unit-reference_access.cpp
+1
-1
test/src/unit-regression.cpp
test/src/unit-regression.cpp
+1
-1
test/src/unit-serialization.cpp
test/src/unit-serialization.cpp
+1
-1
test/src/unit-testsuites.cpp
test/src/unit-testsuites.cpp
+1
-1
test/src/unit-udt.cpp
test/src/unit-udt.cpp
+1
-1
test/src/unit-unicode.cpp
test/src/unit-unicode.cpp
+1
-1
test/src/unit.cpp
test/src/unit.cpp
+1
-1
No files found.
CMakeLists.txt
View file @
d8708268
cmake_minimum_required
(
VERSION 3.0
)
# define the project
project
(
nlohmann_json VERSION 2.
0.1
0 LANGUAGES CXX
)
project
(
nlohmann_json VERSION 2.
1.
0 LANGUAGES CXX
)
enable_testing
()
...
...
ChangeLog.md
View file @
d8708268
# Change Log
All notable changes to this project will be documented in this file. This project adheres to
[
Semantic Versioning
](
http://semver.org/
)
.
## [v2.1.0](https://github.com/nlohmann/json/releases/tag/v2.1.0) (2017-01-28)
[
Full Changelog
](
https://github.com/nlohmann/json/compare/v2.0.10...v2.1.0
)
-
Parsing multiple JSON objects from a string or stream
[
\#438
](
https://github.com/nlohmann/json/issues/438
)
-
Use-of-uninitialized-value
\(
OSS-Fuzz issue 477
\)
[
\#437
](
https://github.com/nlohmann/json/issues/437
)
-
add
`reserve`
function for array to reserve memory before adding json values into it
[
\#436
](
https://github.com/nlohmann/json/issues/436
)
-
Typo in examples page
[
\#434
](
https://github.com/nlohmann/json/issues/434
)
-
avoid malformed json
[
\#433
](
https://github.com/nlohmann/json/issues/433
)
-
How to add json objects to a map?
[
\#432
](
https://github.com/nlohmann/json/issues/432
)
-
create json instance from raw json
\(
unsigned char
\*\)
[
\#431
](
https://github.com/nlohmann/json/issues/431
)
-
Getting std::invalid
\_
argument: stream error when following example
[
\#429
](
https://github.com/nlohmann/json/issues/429
)
-
Forward declare-only header?
[
\#427
](
https://github.com/nlohmann/json/issues/427
)
-
Implicit conversion from array to object
[
\#425
](
https://github.com/nlohmann/json/issues/425
)
-
Automatic ordered JSON
[
\#424
](
https://github.com/nlohmann/json/issues/424
)
-
error C4996: 'strerror' when reading file
[
\#422
](
https://github.com/nlohmann/json/issues/422
)
-
Get an error - JSON pointer must be empty or begin with '/'
[
\#421
](
https://github.com/nlohmann/json/issues/421
)
-
size parameter for parse
\(\)
[
\#419
](
https://github.com/nlohmann/json/issues/419
)
-
json.hpp forcibly defines GCC
\_
VERSION
[
\#417
](
https://github.com/nlohmann/json/issues/417
)
-
Use-of-uninitialized-value
\(
OSS-Fuzz issue 377
\)
[
\#416
](
https://github.com/nlohmann/json/issues/416
)
-
Single char converted to ASCII code instead of string
[
\#413
](
https://github.com/nlohmann/json/issues/413
)
-
How to know if a string was parsed as utf-8?
[
\#406
](
https://github.com/nlohmann/json/issues/406
)
-
Overloaded += to add objects to an array makes no sense?
[
\#404
](
https://github.com/nlohmann/json/issues/404
)
-
Finding a value in an array
[
\#399
](
https://github.com/nlohmann/json/issues/399
)
-
add release information in static function
[
\#397
](
https://github.com/nlohmann/json/issues/397
)
-
Optimize memory usage of json objects in combination with binary serialization
[
\#373
](
https://github.com/nlohmann/json/issues/373
)
-
Conversion operators not considered
[
\#369
](
https://github.com/nlohmann/json/issues/369
)
-
Append ".0" to serialized floating
\_
point values that are digits-only.
[
\#362
](
https://github.com/nlohmann/json/issues/362
)
-
Add a customization point for user-defined types
[
\#328
](
https://github.com/nlohmann/json/issues/328
)
-
Conformance report for reference
[
\#307
](
https://github.com/nlohmann/json/issues/307
)
-
Document the best way to serialize/deserialize user defined types to json
[
\#298
](
https://github.com/nlohmann/json/issues/298
)
-
Add StringView template typename to basic
\_
json
[
\#297
](
https://github.com/nlohmann/json/issues/297
)
-
\[
Improvement
\]
Add option to remove exceptions
[
\#296
](
https://github.com/nlohmann/json/issues/296
)
-
Performance in miloyip/nativejson-benchmark
[
\#202
](
https://github.com/nlohmann/json/issues/202
)
-
conversion from/to user-defined types
[
\#435
](
https://github.com/nlohmann/json/pull/435
)
(
[nlohmann](https://github.com/nlohmann
)
)
-
Fix documentation error
[
\#430
](
https://github.com/nlohmann/json/pull/430
)
(
[vjon](https://github.com/vjon
)
)
## [v2.0.10](https://github.com/nlohmann/json/releases/tag/v2.0.10) (2017-01-02)
[
Full Changelog
](
https://github.com/nlohmann/json/compare/v2.0.9...v2.0.10
)
...
...
doc/Doxyfile
View file @
d8708268
...
...
@@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "JSON for Modern C++"
PROJECT_NUMBER = 2.
0.1
0
PROJECT_NUMBER = 2.
1.
0
PROJECT_BRIEF =
PROJECT_LOGO =
OUTPUT_DIRECTORY = .
...
...
doc/index.md
View file @
d8708268
...
...
@@ -277,4 +277,4 @@ The container functions known from STL have been extended to support the differe
@author
[
Niels Lohmann
](
http://nlohmann.me
)
@see https://github.com/nlohmann/json to download the source code
@version 2.
0.1
0
@version 2.
1.
0
src/json.hpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
@@ -1115,7 +1115,7 @@ class basic_json
result
[
"url"
]
=
"https://github.com/nlohmann/json"
;
result
[
"version"
]
=
{
{
"string"
,
"2.
0.1
0"
},
{
"string"
,
"2.
1.
0"
},
{
"major"
,
2
},
{
"minor"
,
0
},
{
"patch"
,
10
},
...
...
@@ -1726,7 +1726,7 @@ class basic_json
{
if
(
t
==
value_t
::
null
)
{
JSON_THROW
(
std
::
domain_error
(
"961c151d2e87f2686a955a9be24d316f1362bf21 2.
0.1
0"
));
// LCOV_EXCL_LINE
JSON_THROW
(
std
::
domain_error
(
"961c151d2e87f2686a955a9be24d316f1362bf21 2.
1.
0"
));
// LCOV_EXCL_LINE
}
break
;
}
...
...
src/json.hpp.re2c
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
@@ -1115,7 +1115,7 @@ class basic_json
result["url"] = "https://github.com/nlohmann/json";
result["version"] =
{
{"string", "2.
0.1
0"},
{"string", "2.
1.
0"},
{"major", 2},
{"minor", 0},
{"patch", 10},
...
...
@@ -1726,7 +1726,7 @@ class basic_json
{
if (t == value_t::null)
{
JSON_THROW(std::domain_error("961c151d2e87f2686a955a9be24d316f1362bf21 2.
0.1
0")); // LCOV_EXCL_LINE
JSON_THROW(std::domain_error("961c151d2e87f2686a955a9be24d316f1362bf21 2.
1.
0")); // LCOV_EXCL_LINE
}
break;
}
...
...
test/src/fuzzer-driver_afl.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (fuzz test support)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
This file implements a driver for American Fuzzy Lop (afl-fuzz). It relies on
...
...
test/src/fuzzer-parse_cbor.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (fuzz test support)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
This file implements a parser test suitable for fuzz testing. Given a byte
...
...
test/src/fuzzer-parse_json.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (fuzz test support)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
This file implements a parser test suitable for fuzz testing. Given a byte
...
...
test/src/fuzzer-parse_msgpack.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (fuzz test support)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
This file implements a parser test suitable for fuzz testing. Given a byte
...
...
test/src/unit-algorithms.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-allocator.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-capacity.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-cbor.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-class_const_iterator.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-class_iterator.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-class_lexer.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-class_parser.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-comparison.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-concepts.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-constructor1.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-constructor2.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-convenience.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-conversions.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-deserialization.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-element_access1.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-element_access2.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-inspection.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-iterator_wrapper.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-iterators1.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-iterators2.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-json_patch.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-json_pointer.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-meta.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-modifiers.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-msgpack.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-noexcept.cpp
View file @
d8708268
#include "catch.hpp"
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.1.0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
Copyright (c) 2013-2017 Niels Lohmann <http://nlohmann.me>.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "catch.hpp"
#include "json.hpp"
using
nlohmann
::
json
;
...
...
test/src/unit-pointer_access.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-readme.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-reference_access.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-regression.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-serialization.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-testsuites.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-udt.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.7
| | |__ | | | | | | version 2.
1.0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit-unicode.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/unit.cpp
View file @
d8708268
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.
0.1
0
| | |__ | | | | | | version 2.
1.
0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment