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
45e1e3d4
Commit
45e1e3d4
authored
Oct 06, 2017
by
Perry Kundert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert some unnecessary member initializer changes.
parent
5e480b56
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/json.hpp
src/json.hpp
+8
-8
No files found.
src/json.hpp
View file @
45e1e3d4
...
...
@@ -2841,13 +2841,13 @@ scan_number_done:
private:
/// input adapter
detail
::
input_adapter_t
ia
{
nullptr
}
;
detail
::
input_adapter_t
ia
=
nullptr
;
/// the current character
int
current
{
std
::
char_traits
<
char
>::
eof
()
}
;
int
current
=
std
::
char_traits
<
char
>::
eof
()
;
/// the number of characters read
std
::
size_t
chars_read
{
0
}
;
std
::
size_t
chars_read
=
0
;
/// raw input token string (for error messages)
std
::
vector
<
char
>
token_string
{
};
...
...
@@ -2856,15 +2856,15 @@ scan_number_done:
std
::
string
yytext
{
};
/// a description of occurred lexer errors
const
char
*
error_message
{
""
}
;
const
char
*
error_message
=
""
;
// number values
number_integer_t
value_integer
{
0
}
;
number_unsigned_t
value_unsigned
{
0
}
;
number_float_t
value_float
{
0
}
;
number_integer_t
value_integer
=
0
;
number_unsigned_t
value_unsigned
=
0
;
number_float_t
value_float
=
0
;
/// the decimal point
const
char
decimal_point_char
{
'.'
}
;
const
char
decimal_point_char
=
'.'
;
};
/*!
...
...
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