diff --git a/include/nlohmann/detail/conversions/to_chars.hpp b/include/nlohmann/detail/conversions/to_chars.hpp index 70fb9b933..c0945ab9e 100644 --- a/include/nlohmann/detail/conversions/to_chars.hpp +++ b/include/nlohmann/detail/conversions/to_chars.hpp @@ -1075,8 +1075,8 @@ char* to_chars(char* first, const char* last, FloatType value) } #ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wfloat-equal" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(GCC diagnostic ignored "-Wfloat-equal") #endif if (value == 0) // +-0 { @@ -1087,7 +1087,7 @@ char* to_chars(char* first, const char* last, FloatType value) return first; } #ifdef __GNUC__ -#pragma GCC diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif JSON_ASSERT(last - first >= std::numeric_limits::max_digits10); diff --git a/include/nlohmann/detail/exceptions.hpp b/include/nlohmann/detail/exceptions.hpp index cb87bb93e..3e5b45101 100644 --- a/include/nlohmann/detail/exceptions.hpp +++ b/include/nlohmann/detail/exceptions.hpp @@ -33,8 +33,8 @@ // code stumbling over this. See https://github.com/nlohmann/json/issues/4087 // for a discussion. #if defined(__clang__) - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wweak-vtables" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(clang diagnostic ignored "-Wweak-vtables") #endif NLOHMANN_JSON_NAMESPACE_BEGIN @@ -287,5 +287,5 @@ class other_error : public exception NLOHMANN_JSON_NAMESPACE_END #if defined(__clang__) - #pragma clang diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif diff --git a/include/nlohmann/detail/iterators/iteration_proxy.hpp b/include/nlohmann/detail/iterators/iteration_proxy.hpp index 99246d120..c8aa50dd2 100644 --- a/include/nlohmann/detail/iterators/iteration_proxy.hpp +++ b/include/nlohmann/detail/iterators/iteration_proxy.hpp @@ -18,6 +18,7 @@ #endif #include +#include #include #include #include @@ -206,10 +207,10 @@ NLOHMANN_JSON_NAMESPACE_END namespace std { +// Fix: https://github.com/nlohmann/json/issues/1401 #if defined(__clang__) - // Fix: https://github.com/nlohmann/json/issues/1401 - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wmismatched-tags" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(clang diagnostic ignored "-Wmismatched-tags") #endif template class tuple_size<::nlohmann::detail::iteration_proxy_value> // NOLINT(cert-dcl58-cpp) @@ -224,7 +225,7 @@ class tuple_element> ::nlohmann::detail::iteration_proxy_value> ())); }; #if defined(__clang__) - #pragma clang diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif } // namespace std diff --git a/include/nlohmann/detail/output/binary_writer.hpp b/include/nlohmann/detail/output/binary_writer.hpp index b8e9efa45..496c733d1 100644 --- a/include/nlohmann/detail/output/binary_writer.hpp +++ b/include/nlohmann/detail/output/binary_writer.hpp @@ -1850,8 +1850,8 @@ class binary_writer void write_compact_float(const number_float_t n, detail::input_format_t format) { #ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wfloat-equal" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(GCC diagnostic ignored "-Wfloat-equal") #endif if (!std::isfinite(n) || ((static_cast(n) >= static_cast(std::numeric_limits::lowest()) && static_cast(n) <= static_cast((std::numeric_limits::max)()) && @@ -1870,7 +1870,7 @@ class binary_writer write_number(n); } #ifdef __GNUC__ -#pragma GCC diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif } diff --git a/include/nlohmann/json.hpp b/include/nlohmann/json.hpp index 6f9876478..feafd9e20 100644 --- a/include/nlohmann/json.hpp +++ b/include/nlohmann/json.hpp @@ -3771,13 +3771,13 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec bool operator==(const_reference rhs) const noexcept { #ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wfloat-equal" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(GCC diagnostic ignored "-Wfloat-equal") #endif const_reference lhs = *this; JSON_IMPLEMENT_OPERATOR( ==, true, false, false) #ifdef __GNUC__ -#pragma GCC diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif } @@ -3864,12 +3864,12 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec friend bool operator==(const_reference lhs, const_reference rhs) noexcept { #ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wfloat-equal" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(GCC diagnostic ignored "-Wfloat-equal") #endif JSON_IMPLEMENT_OPERATOR( ==, true, false, false) #ifdef __GNUC__ -#pragma GCC diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif } diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp index 68691769c..605bf8364 100644 --- a/single_include/nlohmann/json.hpp +++ b/single_include/nlohmann/json.hpp @@ -4945,8 +4945,8 @@ NLOHMANN_JSON_NAMESPACE_END // code stumbling over this. See https://github.com/nlohmann/json/issues/4087 // for a discussion. #if defined(__clang__) - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wweak-vtables" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(clang diagnostic ignored "-Wweak-vtables") #endif NLOHMANN_JSON_NAMESPACE_BEGIN @@ -5199,7 +5199,7 @@ class other_error : public exception NLOHMANN_JSON_NAMESPACE_END #if defined(__clang__) - #pragma clang diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif // #include @@ -5975,6 +5975,8 @@ NLOHMANN_JSON_NAMESPACE_END // #include +// #include + // #include // #include @@ -6204,10 +6206,10 @@ NLOHMANN_JSON_NAMESPACE_END namespace std { +// Fix: https://github.com/nlohmann/json/issues/1401 #if defined(__clang__) - // Fix: https://github.com/nlohmann/json/issues/1401 - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wmismatched-tags" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(clang diagnostic ignored "-Wmismatched-tags") #endif template class tuple_size<::nlohmann::detail::iteration_proxy_value> // NOLINT(cert-dcl58-cpp) @@ -6222,7 +6224,7 @@ class tuple_element> ::nlohmann::detail::iteration_proxy_value> ())); }; #if defined(__clang__) - #pragma clang diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif } // namespace std @@ -18982,8 +18984,8 @@ class binary_writer void write_compact_float(const number_float_t n, detail::input_format_t format) { #ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wfloat-equal" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(GCC diagnostic ignored "-Wfloat-equal") #endif if (!std::isfinite(n) || ((static_cast(n) >= static_cast(std::numeric_limits::lowest()) && static_cast(n) <= static_cast((std::numeric_limits::max)()) && @@ -19002,7 +19004,7 @@ class binary_writer write_number(n); } #ifdef __GNUC__ -#pragma GCC diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif } @@ -20177,8 +20179,8 @@ char* to_chars(char* first, const char* last, FloatType value) } #ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wfloat-equal" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(GCC diagnostic ignored "-Wfloat-equal") #endif if (value == 0) // +-0 { @@ -20189,7 +20191,7 @@ char* to_chars(char* first, const char* last, FloatType value) return first; } #ifdef __GNUC__ -#pragma GCC diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif JSON_ASSERT(last - first >= std::numeric_limits::max_digits10); @@ -25323,13 +25325,13 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec bool operator==(const_reference rhs) const noexcept { #ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wfloat-equal" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(GCC diagnostic ignored "-Wfloat-equal") #endif const_reference lhs = *this; JSON_IMPLEMENT_OPERATOR( ==, true, false, false) #ifdef __GNUC__ -#pragma GCC diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif } @@ -25416,12 +25418,12 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec friend bool operator==(const_reference lhs, const_reference rhs) noexcept { #ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wfloat-equal" + JSON_HEDLEY_DIAGNOSTIC_PUSH + JSON_HEDLEY_PRAGMA(GCC diagnostic ignored "-Wfloat-equal") #endif JSON_IMPLEMENT_OPERATOR( ==, true, false, false) #ifdef __GNUC__ -#pragma GCC diagnostic pop + JSON_HEDLEY_DIAGNOSTIC_POP #endif }