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
d7a2956b
Unverified
Commit
d7a2956b
authored
Jun 27, 2020
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🔀
merge from develop
parent
ac3922c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
627 additions
and
626 deletions
+627
-626
include/nlohmann/detail/input/input_adapters.hpp
include/nlohmann/detail/input/input_adapters.hpp
+3
-3
include/nlohmann/detail/input/lexer.hpp
include/nlohmann/detail/input/lexer.hpp
+1
-1
single_include/nlohmann/json.hpp
single_include/nlohmann/json.hpp
+623
-622
No files found.
include/nlohmann/detail/input/input_adapters.hpp
View file @
d7a2956b
...
...
@@ -403,9 +403,9 @@ using contiguous_bytes_input_adapter = decltype(input_adapter(std::declval<const
// Null-delimited strings, and the like.
template
<
typename
CharT
,
typename
std
::
enable_if
<
std
::
is_pointer
<
CharT
>
::
value
&&
not
std
::
is_array
<
CharT
>::
value
&&
std
::
is_integral
<
typename
std
::
remove_pointer
<
CharT
>::
type
>::
value
&&
std
::
is_pointer
<
CharT
>
::
value
&&
not
std
::
is_array
<
CharT
>::
value
&&
std
::
is_integral
<
typename
std
::
remove_pointer
<
CharT
>::
type
>::
value
&&
sizeof
(
typename
std
::
remove_pointer
<
CharT
>::
type
)
==
1
,
int
>::
type
=
0
>
contiguous_bytes_input_adapter
input_adapter
(
CharT
b
)
...
...
include/nlohmann/detail/input/lexer.hpp
View file @
d7a2956b
...
...
@@ -1511,7 +1511,7 @@ scan_number_done:
skip_whitespace
();
// ignore comments
if
(
ignore_comments
and
current
==
'/'
)
if
(
ignore_comments
&&
current
==
'/'
)
{
if
(
not
scan_comment
())
{
...
...
single_include/nlohmann/json.hpp
View file @
d7a2956b
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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