updated README

This commit is contained in:
Niels 2015-04-26 15:16:07 +02:00
parent 7a32bd22e9
commit f09df96742
3 changed files with 6 additions and 1 deletions

View File

@ -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 (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).

View File

@ -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)

View File

@ -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)