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
f09df967
Commit
f09df967
authored
Apr 26, 2015
by
Niels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated README
parent
7a32bd22
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
README.md
README.md
+2
-1
src/json.hpp
src/json.hpp
+2
-0
src/json.hpp.re2c
src/json.hpp.re2c
+2
-0
No files found.
README.md
View file @
f09df967
...
...
@@ -382,6 +382,7 @@ I deeply appreciate the help of the following people.
-
[
Joshua C. Randall
](
https://github.com/jrandall
)
fixed a bug in the floating-point serialization.
-
[
Aaron Burghardt
](
https://github.com/aburgh
)
implemented code to parse streams incrementally.
-
[
Daniel Kopeček
](
https://github.com/dkopecek
)
fixed a bug in the compilation with GCC 5.0.
-
[
Florian Weber
](
https://github.com/Florianjw
)
fixed a bug in and improved the performance of the comparison operators.
Thanks a lot for helping out!
...
...
@@ -394,7 +395,7 @@ $ make
$
./json_unit
===============================================================================
All tests passed
(
4
463 assertions
in
18
test
cases
)
All tests passed
(
4
558 assertions
in
19
test
cases
)
```
For more information, have a look at the file
[
.travis.yml
](
https://github.com/nlohmann/json/blob/master/.travis.yml
)
.
src/json.hpp
View file @
f09df967
...
...
@@ -1812,6 +1812,7 @@ class basic_json
{
const
auto
lhs_type
=
lhs
.
type
();
const
auto
rhs_type
=
rhs
.
type
();
if
(
lhs_type
==
rhs_type
)
{
switch
(
lhs_type
)
...
...
@@ -1859,6 +1860,7 @@ class basic_json
{
const
auto
lhs_type
=
lhs
.
type
();
const
auto
rhs_type
=
rhs
.
type
();
if
(
lhs_type
==
rhs_type
)
{
switch
(
lhs_type
)
...
...
src/json.hpp.re2c
View file @
f09df967
...
...
@@ -1812,6 +1812,7 @@ class basic_json
{
const auto lhs_type = lhs.type();
const auto rhs_type = rhs.type();
if (lhs_type == rhs_type)
{
switch (lhs_type)
...
...
@@ -1859,6 +1860,7 @@ class basic_json
{
const auto lhs_type = lhs.type();
const auto rhs_type = rhs.type();
if (lhs_type == rhs_type)
{
switch (lhs_type)
...
...
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