Commit c09d03fb authored by Niels's avatar Niels

fixed documentation

parent 31093694
...@@ -5,7 +5,7 @@ ...@@ -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 = .
......
null null
false false
0 0
0 0.0
{} {}
[] []
"" ""
null null
false false
0 0
0 0.0
{} {}
[] []
"" ""
[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
[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
...@@ -32,7 +32,7 @@ Class @ref nlohmann::basic_json is a good entry point for the documentation. ...@@ -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
......
...@@ -32,7 +32,7 @@ Class @ref nlohmann::basic_json is a good entry point for the documentation. ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment