From c09d03fba7b0f47a3622bdde682c3756719794fb Mon Sep 17 00:00:00 2001 From: Niels Date: Sun, 24 Jan 2016 22:43:00 +0100 Subject: [PATCH] fixed documentation --- doc/Doxyfile | 2 +- doc/examples/basic_json__value_t.output | 2 +- doc/examples/clear.output | 2 +- doc/examples/operator__equal.output | 2 +- doc/examples/operator__notequal.output | 2 +- src/json.hpp | 2 +- src/json.hpp.re2c | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/Doxyfile b/doc/Doxyfile index 9cca8a83..a97cb5ad 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "JSON for Modern C++" -PROJECT_NUMBER = 1.0.0 +PROJECT_NUMBER = 1.1.0 PROJECT_BRIEF = PROJECT_LOGO = OUTPUT_DIRECTORY = . diff --git a/doc/examples/basic_json__value_t.output b/doc/examples/basic_json__value_t.output index 0a6269fb..ea542cae 100644 --- a/doc/examples/basic_json__value_t.output +++ b/doc/examples/basic_json__value_t.output @@ -1,7 +1,7 @@ null false 0 -0 +0.0 {} [] "" diff --git a/doc/examples/clear.output b/doc/examples/clear.output index 0a6269fb..ea542cae 100644 --- a/doc/examples/clear.output +++ b/doc/examples/clear.output @@ -1,7 +1,7 @@ null false 0 -0 +0.0 {} [] "" diff --git a/doc/examples/operator__equal.output b/doc/examples/operator__equal.output index e9dfd755..78067355 100644 --- a/doc/examples/operator__equal.output +++ b/doc/examples/operator__equal.output @@ -1,4 +1,4 @@ [1,2,3] == [1,2,4] false {"A":"a","B":"b"} == {"A":"a","B":"b"} true -17 == 17 true +17 == 17.0 true "foo" == "bar" false diff --git a/doc/examples/operator__notequal.output b/doc/examples/operator__notequal.output index ddd838b4..9eba626e 100644 --- a/doc/examples/operator__notequal.output +++ b/doc/examples/operator__notequal.output @@ -1,4 +1,4 @@ [1,2,3] == [1,2,4] true {"A":"a","B":"b"} == {"A":"a","B":"b"} false -17 == 17 false +17 == 17.0 false "foo" == "bar" true diff --git a/src/json.hpp b/src/json.hpp index 728b8870..db733367 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -32,7 +32,7 @@ Class @ref nlohmann::basic_json is a good entry point for the documentation. @author [Niels Lohmann](http://nlohmann.me) @see https://github.com/nlohmann/json to download the source code -@version 1.0.0 +@version 1.1.0 */ #ifndef NLOHMANN_JSON_HPP diff --git a/src/json.hpp.re2c b/src/json.hpp.re2c index e55e1d14..ce2a18f6 100644 --- a/src/json.hpp.re2c +++ b/src/json.hpp.re2c @@ -32,7 +32,7 @@ Class @ref nlohmann::basic_json is a good entry point for the documentation. @author [Niels Lohmann](http://nlohmann.me) @see https://github.com/nlohmann/json to download the source code -@version 1.0.0 +@version 1.1.0 */ #ifndef NLOHMANN_JSON_HPP