From 8a0490a011d806e278b5464c459d277c524337ed Mon Sep 17 00:00:00 2001 From: Niels Date: Sun, 24 Jan 2016 13:04:55 +0100 Subject: [PATCH] cleanup --- README.md | 2 +- test/unit.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b985bfa4..6d45c2a2 100644 --- a/README.md +++ b/README.md @@ -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! diff --git a/test/unit.cpp b/test/unit.cpp index 949788e9..94b5084c 100644 --- a/test/unit.cpp +++ b/test/unit.cpp @@ -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")