fixed documentation

This commit is contained in:
Niels 2016-01-24 22:43:00 +01:00
parent 31093694ce
commit c09d03fba7
7 changed files with 7 additions and 7 deletions

View file

@ -5,7 +5,7 @@
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8 DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "JSON for Modern C++" PROJECT_NAME = "JSON for Modern C++"
PROJECT_NUMBER = 1.0.0 PROJECT_NUMBER = 1.1.0
PROJECT_BRIEF = PROJECT_BRIEF =
PROJECT_LOGO = PROJECT_LOGO =
OUTPUT_DIRECTORY = . OUTPUT_DIRECTORY = .

View file

@ -1,7 +1,7 @@
null null
false false
0 0
0 0.0
{} {}
[] []
"" ""

View file

@ -1,7 +1,7 @@
null null
false false
0 0
0 0.0
{} {}
[] []
"" ""

View file

@ -1,4 +1,4 @@
[1,2,3] == [1,2,4] false [1,2,3] == [1,2,4] false
{"A":"a","B":"b"} == {"A":"a","B":"b"} true {"A":"a","B":"b"} == {"A":"a","B":"b"} true
17 == 17 true 17 == 17.0 true
"foo" == "bar" false "foo" == "bar" false

View file

@ -1,4 +1,4 @@
[1,2,3] == [1,2,4] true [1,2,3] == [1,2,4] true
{"A":"a","B":"b"} == {"A":"a","B":"b"} false {"A":"a","B":"b"} == {"A":"a","B":"b"} false
17 == 17 false 17 == 17.0 false
"foo" == "bar" true "foo" == "bar" true

View file

@ -32,7 +32,7 @@ Class @ref nlohmann::basic_json is a good entry point for the documentation.
@author [Niels Lohmann](http://nlohmann.me) @author [Niels Lohmann](http://nlohmann.me)
@see https://github.com/nlohmann/json to download the source code @see https://github.com/nlohmann/json to download the source code
@version 1.0.0 @version 1.1.0
*/ */
#ifndef NLOHMANN_JSON_HPP #ifndef NLOHMANN_JSON_HPP

View file

@ -32,7 +32,7 @@ Class @ref nlohmann::basic_json is a good entry point for the documentation.
@author [Niels Lohmann](http://nlohmann.me) @author [Niels Lohmann](http://nlohmann.me)
@see https://github.com/nlohmann/json to download the source code @see https://github.com/nlohmann/json to download the source code
@version 1.0.0 @version 1.1.0
*/ */
#ifndef NLOHMANN_JSON_HPP #ifndef NLOHMANN_JSON_HPP