Commit 4e31a0e8 authored by Niels's avatar Niels

minor doc changes

parent 039565b9
...@@ -10,4 +10,5 @@ working ...@@ -10,4 +10,5 @@ working
html html
me.nlohmann.json.docset me.nlohmann.json.docset
android android
\ No newline at end of file doc/xml
...@@ -236,7 +236,7 @@ MAN_LINKS = NO ...@@ -236,7 +236,7 @@ MAN_LINKS = NO
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Configuration options related to the XML output # Configuration options related to the XML output
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
GENERATE_XML = NO GENERATE_XML = YES
XML_OUTPUT = xml XML_OUTPUT = xml
XML_PROGRAMLISTING = YES XML_PROGRAMLISTING = YES
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
......
...@@ -7278,17 +7278,17 @@ class basic_json ...@@ -7278,17 +7278,17 @@ class basic_json
enum class token_type enum class token_type
{ {
uninitialized, ///< indicating the scanner is uninitialized uninitialized, ///< indicating the scanner is uninitialized
literal_true, ///< the "true" literal literal_true, ///< the `true` literal
literal_false, ///< the "false" literal literal_false, ///< the `false` literal
literal_null, ///< the "null" literal literal_null, ///< the `null` literal
value_string, ///< a string -- use get_string() for actual value value_string, ///< a string -- use get_string() for actual value
value_number, ///< a number -- use get_number() for actual value value_number, ///< a number -- use get_number() for actual value
begin_array, ///< the character for array begin "[" begin_array, ///< the character for array begin `[`
begin_object, ///< the character for object begin "{" begin_object, ///< the character for object begin `{`
end_array, ///< the character for array end "]" end_array, ///< the character for array end `]`
end_object, ///< the character for object end "}" end_object, ///< the character for object end `}`
name_separator, ///< the name separator ":" name_separator, ///< the name separator `:`
value_separator, ///< the value separator "," value_separator, ///< the value separator `,`
parse_error, ///< indicating a parse error parse_error, ///< indicating a parse error
end_of_input ///< indicating the end of the input buffer end_of_input ///< indicating the end of the input buffer
}; };
......
...@@ -7278,17 +7278,17 @@ class basic_json ...@@ -7278,17 +7278,17 @@ class basic_json
enum class token_type enum class token_type
{ {
uninitialized, ///< indicating the scanner is uninitialized uninitialized, ///< indicating the scanner is uninitialized
literal_true, ///< the "true" literal literal_true, ///< the `true` literal
literal_false, ///< the "false" literal literal_false, ///< the `false` literal
literal_null, ///< the "null" literal literal_null, ///< the `null` literal
value_string, ///< a string -- use get_string() for actual value value_string, ///< a string -- use get_string() for actual value
value_number, ///< a number -- use get_number() for actual value value_number, ///< a number -- use get_number() for actual value
begin_array, ///< the character for array begin "[" begin_array, ///< the character for array begin `[`
begin_object, ///< the character for object begin "{" begin_object, ///< the character for object begin `{`
end_array, ///< the character for array end "]" end_array, ///< the character for array end `]`
end_object, ///< the character for object end "}" end_object, ///< the character for object end `}`
name_separator, ///< the name separator ":" name_separator, ///< the name separator `:`
value_separator, ///< the value separator "," value_separator, ///< the value separator `,`
parse_error, ///< indicating a parse error parse_error, ///< indicating a parse error
end_of_input ///< indicating the end of the input buffer end_of_input ///< indicating the end of the input buffer
}; };
......
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