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
c22ee3f2
Commit
c22ee3f2
authored
Jan 21, 2015
by
Niels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed an issue with non portability
parent
6ee46ed5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
README.md
README.md
+1
-0
test/json_unit.cc
test/json_unit.cc
+2
-2
No files found.
README.md
View file @
c22ee3f2
...
...
@@ -262,6 +262,7 @@ I deeply appreciate the help of the following people.
-
[
elliotgoodrich
](
https://github.com/elliotgoodrich
)
fixed an issue with double deletion in the iterator classes.
-
[
kirkshoop
](
https://github.com/kirkshoop
)
made the iterators of the class composable to other libraries.
-
[
wancw
](
https://github.com/wanwc
)
fixed a bug that hindered the class to compile with Clang.
-
Tomas Åblad found a bug in the iterator implementation.
Thanks a lot for helping out!
...
...
test/json_unit.cc
View file @
c22ee3f2
...
...
@@ -2065,8 +2065,8 @@ TEST_CASE("Parser")
CHECK
(
json
::
parse
(
"10000.0E-4"
)
==
json
(
1
));
// 64 bit integers
CHECK
(
json
::
parse
(
"9
223372036854775807"
)
==
json
(
9223372036854775807
));
CHECK
(
json
::
parse
(
"-9
223372036854775807"
)
==
json
(
-
9223372036854775807
));
CHECK
(
json
::
parse
(
"9
000000000000000000"
)
==
json
(
9000000000000000000
));
CHECK
(
json
::
parse
(
"-9
000000000000000000"
)
==
json
(
-
9000000000000000000
));
// trailing zero is not allowed
//CHECK_THROWS_AS(json::parse("01"), std::invalid_argument);
...
...
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