Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
4e31a0e8
Commit
4e31a0e8
authored
Jun 19, 2016
by
Niels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor doc changes
parent
039565b9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
20 deletions
+21
-20
.gitignore
.gitignore
+2
-1
doc/Doxyfile
doc/Doxyfile
+1
-1
src/json.hpp
src/json.hpp
+9
-9
src/json.hpp.re2c
src/json.hpp.re2c
+9
-9
No files found.
.gitignore
View file @
4e31a0e8
...
...
@@ -10,4 +10,5 @@ working
html
me.nlohmann.json.docset
android
\ No newline at end of file
android
doc/xml
doc/Doxyfile
View file @
4e31a0e8
...
...
@@ -236,7 +236,7 @@ MAN_LINKS = NO
#---------------------------------------------------------------------------
# Configuration options related to the XML output
#---------------------------------------------------------------------------
GENERATE_XML =
NO
GENERATE_XML =
YES
XML_OUTPUT = xml
XML_PROGRAMLISTING = YES
#---------------------------------------------------------------------------
...
...
src/json.hpp
View file @
4e31a0e8
...
...
@@ -7278,17 +7278,17 @@ class basic_json
enum
class
token_type
{
uninitialized
,
///< indicating the scanner is uninitialized
literal_true
,
///< the
"true"
literal
literal_false
,
///< the
"false"
literal
literal_null
,
///< the
"null"
literal
literal_true
,
///< the
`true`
literal
literal_false
,
///< the
`false`
literal
literal_null
,
///< the
`null`
literal
value_string
,
///< a string -- use get_string() for actual value
value_number
,
///< a number -- use get_number() for actual value
begin_array
,
///< the character for array begin
"["
begin_object
,
///< the character for object begin
"{"
end_array
,
///< the character for array end
"]"
end_object
,
///< the character for object end
"}"
name_separator
,
///< the name separator
":"
value_separator
,
///< the value separator
","
begin_array
,
///< the character for array begin
`[`
begin_object
,
///< the character for object begin
`{`
end_array
,
///< the character for array end
`]`
end_object
,
///< the character for object end
`}`
name_separator
,
///< the name separator
`:`
value_separator
,
///< the value separator
`,`
parse_error
,
///< indicating a parse error
end_of_input
///< indicating the end of the input buffer
};
...
...
src/json.hpp.re2c
View file @
4e31a0e8
...
...
@@ -7278,17 +7278,17 @@ class basic_json
enum class token_type
{
uninitialized, ///< indicating the scanner is uninitialized
literal_true, ///< the
"true"
literal
literal_false, ///< the
"false"
literal
literal_null, ///< the
"null"
literal
literal_true, ///< the
`true`
literal
literal_false, ///< the
`false`
literal
literal_null, ///< the
`null`
literal
value_string, ///< a string -- use get_string() for actual value
value_number, ///< a number -- use get_number() for actual value
begin_array, ///< the character for array begin
"["
begin_object, ///< the character for object begin
"{"
end_array, ///< the character for array end
"]"
end_object, ///< the character for object end
"}"
name_separator, ///< the name separator
":"
value_separator, ///< the value separator
","
begin_array, ///< the character for array begin
`[`
begin_object, ///< the character for object begin
`{`
end_array, ///< the character for array end
`]`
end_object, ///< the character for object end
`}`
name_separator, ///< the name separator
`:`
value_separator, ///< the value separator
`,`
parse_error, ///< indicating a parse error
end_of_input ///< indicating the end of the input buffer
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment