summaryrefslogtreecommitdiffstats
path: root/external/boost/Wundef.patch.0
diff options
context:
space:
mode:
Diffstat (limited to 'external/boost/Wundef.patch.0')
-rw-r--r--external/boost/Wundef.patch.022
1 files changed, 0 insertions, 22 deletions
diff --git a/external/boost/Wundef.patch.0 b/external/boost/Wundef.patch.0
index 63dfc4afde00..8cb546464373 100644
--- a/external/boost/Wundef.patch.0
+++ b/external/boost/Wundef.patch.0
@@ -31,25 +31,3 @@
# pragma clang diagnostic pop
#endif
}}} // namespace boost::locale::detail
---- boost/math/tools/config.hpp
-+++ boost/math/tools/config.hpp
-@@ -147,7 +147,7 @@
- #endif
-
- // C++23
--#if __cplusplus > 202002L || _MSVC_LANG > 202002L
-+#if __cplusplus > 202002L || (defined _MSVC_LANG && _MSVC_LANG > 202002L)
- # if __GNUC__ >= 13
- // libstdc++3 only defines to/from_chars for std::float128_t when one of these defines are set
- // otherwise we're right out of luck...
---- boost/math/tools/promotion.hpp
-+++ boost/math/tools/promotion.hpp
-@@ -27,7 +27,7 @@
- #include <type_traits>
-
- #if defined __has_include
--# if __cplusplus > 202002L || _MSVC_LANG > 202002L
-+# if __cplusplus > 202002L || (defined _MSVC_LANG && _MSVC_LANG > 202002L)
- # if __has_include (<stdfloat>)
- # include <stdfloat>
- # endif