Commit f09df967 authored by Niels's avatar Niels

updated README

parent 7a32bd22
...@@ -382,6 +382,7 @@ I deeply appreciate the help of the following people. ...@@ -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. - [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. - [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. - [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! Thanks a lot for helping out!
...@@ -394,7 +395,7 @@ $ make ...@@ -394,7 +395,7 @@ $ make
$ ./json_unit $ ./json_unit
=============================================================================== ===============================================================================
All tests passed (4463 assertions in 18 test cases) All tests passed (4558 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). For more information, have a look at the file [.travis.yml](https://github.com/nlohmann/json/blob/master/.travis.yml).
...@@ -1812,6 +1812,7 @@ class basic_json ...@@ -1812,6 +1812,7 @@ class basic_json
{ {
const auto lhs_type = lhs.type(); const auto lhs_type = lhs.type();
const auto rhs_type = rhs.type(); const auto rhs_type = rhs.type();
if (lhs_type == rhs_type) if (lhs_type == rhs_type)
{ {
switch (lhs_type) switch (lhs_type)
...@@ -1859,6 +1860,7 @@ class basic_json ...@@ -1859,6 +1860,7 @@ class basic_json
{ {
const auto lhs_type = lhs.type(); const auto lhs_type = lhs.type();
const auto rhs_type = rhs.type(); const auto rhs_type = rhs.type();
if (lhs_type == rhs_type) if (lhs_type == rhs_type)
{ {
switch (lhs_type) switch (lhs_type)
......
...@@ -1812,6 +1812,7 @@ class basic_json ...@@ -1812,6 +1812,7 @@ class basic_json
{ {
const auto lhs_type = lhs.type(); const auto lhs_type = lhs.type();
const auto rhs_type = rhs.type(); const auto rhs_type = rhs.type();
if (lhs_type == rhs_type) if (lhs_type == rhs_type)
{ {
switch (lhs_type) switch (lhs_type)
...@@ -1859,6 +1860,7 @@ class basic_json ...@@ -1859,6 +1860,7 @@ class basic_json
{ {
const auto lhs_type = lhs.type(); const auto lhs_type = lhs.type();
const auto rhs_type = rhs.type(); const auto rhs_type = rhs.type();
if (lhs_type == rhs_type) if (lhs_type == rhs_type)
{ {
switch (lhs_type) switch (lhs_type)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment