1
0
mirror of https://github.com/nlohmann/json synced 2024-11-12 23:40:05 +00:00
This commit is contained in:
Niels 2016-01-24 13:04:55 +01:00
parent e00b00fea8
commit 8a0490a011
2 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ I deeply appreciate the help of the following people.
- [406345](https://github.com/406345) fixed two small warnings.
- [Glen Fernandes](https://github.com/glenfe) noted a potential portability problem in the `has_mapped_type` function.
- [Corbin Hughes](https://github.com/nibroc) fixed some typos in the contribution guidelines.
- [twelsby](https://github.com/twelsby) fixed the array subscript operator.
- [twelsby](https://github.com/twelsby) fixed the array subscript operator and an issue that failed the MSVC build.
Thanks a lot for helping out!

View File

@ -27,7 +27,7 @@ using nlohmann::json;
// disable float-equal warnings on GCC/clang
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
#pragma GCC diagnostic ignored "-Wfloat-equal"
#pragma GCC diagnostic ignored "-Wfloat-equal"
#endif
TEST_CASE("constructors")