fixed documentation
This commit is contained in:
parent
31093694ce
commit
c09d03fba7
7 changed files with 7 additions and 7 deletions
|
@ -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 = .
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
null
|
||||
false
|
||||
0
|
||||
0
|
||||
0.0
|
||||
{}
|
||||
[]
|
||||
""
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
null
|
||||
false
|
||||
0
|
||||
0
|
||||
0.0
|
||||
{}
|
||||
[]
|
||||
""
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue