aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2022-12-31 10:34:59 +0300
committerthegeorg <thegeorg@yandex-team.com>2022-12-31 10:34:59 +0300
commit0ec27b614f46afcfa62cd3dc7e86bdd44b60f096 (patch)
tree5b875763a4529cec1857fc63e78b39412588cc83
parenta2d8ecbb598f4c683fbb3b0266c4f703caa855d7 (diff)
downloadydb-0ec27b614f46afcfa62cd3dc7e86bdd44b60f096.tar.gz
Remove patch from boost/config
-rw-r--r--contrib/restricted/boost/config/include/boost/config/detail/select_compiler_config.hpp2
-rw-r--r--contrib/restricted/boost/config/include/boost/limits.hpp24
2 files changed, 13 insertions, 13 deletions
diff --git a/contrib/restricted/boost/config/include/boost/config/detail/select_compiler_config.hpp b/contrib/restricted/boost/config/include/boost/config/detail/select_compiler_config.hpp
index fc857ea385..c3d99e1a43 100644
--- a/contrib/restricted/boost/config/include/boost/config/detail/select_compiler_config.hpp
+++ b/contrib/restricted/boost/config/include/boost/config/detail/select_compiler_config.hpp
@@ -39,7 +39,7 @@
// Intel
# define BOOST_COMPILER_CONFIG "boost/config/compiler/intel.hpp"
-#elif defined __clang__ && !defined(__ibmxl__) && !defined(__CODEGEARC__) && !defined(_MSC_VER)
+#elif defined __clang__ && !defined(__ibmxl__) && !defined(__CODEGEARC__)
// Clang C++ emulates GCC, so it has to appear early.
# define BOOST_COMPILER_CONFIG "boost/config/compiler/clang.hpp"
diff --git a/contrib/restricted/boost/config/include/boost/limits.hpp b/contrib/restricted/boost/config/include/boost/limits.hpp
index 261435013a..1b54477ecd 100644
--- a/contrib/restricted/boost/config/include/boost/limits.hpp
+++ b/contrib/restricted/boost/config/include/boost/limits.hpp
@@ -59,8 +59,8 @@ namespace std
BOOST_STATIC_CONSTANT(bool, is_integer = true);
BOOST_STATIC_CONSTANT(bool, is_exact = true);
BOOST_STATIC_CONSTANT(int, radix = 2);
- static BOOST_LLT epsilon() noexcept { return 0; };
- static BOOST_LLT round_error() noexcept { return 0; };
+ static BOOST_LLT epsilon() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
+ static BOOST_LLT round_error() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
BOOST_STATIC_CONSTANT(int, min_exponent = 0);
BOOST_STATIC_CONSTANT(int, min_exponent10 = 0);
@@ -72,10 +72,10 @@ namespace std
BOOST_STATIC_CONSTANT(bool, has_signaling_NaN = false);
BOOST_STATIC_CONSTANT(bool, has_denorm = false);
BOOST_STATIC_CONSTANT(bool, has_denorm_loss = false);
- static BOOST_LLT infinity() noexcept { return 0; };
- static BOOST_LLT quiet_NaN() noexcept { return 0; };
- static BOOST_LLT signaling_NaN() noexcept { return 0; };
- static BOOST_LLT denorm_min() noexcept { return 0; };
+ static BOOST_LLT infinity() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
+ static BOOST_LLT quiet_NaN() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
+ static BOOST_LLT signaling_NaN() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
+ static BOOST_LLT denorm_min() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
BOOST_STATIC_CONSTANT(bool, is_iec559 = false);
BOOST_STATIC_CONSTANT(bool, is_bounded = true);
@@ -112,8 +112,8 @@ namespace std
BOOST_STATIC_CONSTANT(bool, is_integer = true);
BOOST_STATIC_CONSTANT(bool, is_exact = true);
BOOST_STATIC_CONSTANT(int, radix = 2);
- static BOOST_ULLT epsilon() noexcept { return 0; };
- static BOOST_ULLT round_error() noexcept { return 0; };
+ static BOOST_ULLT epsilon() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
+ static BOOST_ULLT round_error() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
BOOST_STATIC_CONSTANT(int, min_exponent = 0);
BOOST_STATIC_CONSTANT(int, min_exponent10 = 0);
@@ -125,10 +125,10 @@ namespace std
BOOST_STATIC_CONSTANT(bool, has_signaling_NaN = false);
BOOST_STATIC_CONSTANT(bool, has_denorm = false);
BOOST_STATIC_CONSTANT(bool, has_denorm_loss = false);
- static BOOST_ULLT infinity() noexcept { return 0; };
- static BOOST_ULLT quiet_NaN() noexcept { return 0; };
- static BOOST_ULLT signaling_NaN() noexcept { return 0; };
- static BOOST_ULLT denorm_min() noexcept { return 0; };
+ static BOOST_ULLT infinity() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
+ static BOOST_ULLT quiet_NaN() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
+ static BOOST_ULLT signaling_NaN() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
+ static BOOST_ULLT denorm_min() BOOST_NOEXCEPT_OR_NOTHROW { return 0; };
BOOST_STATIC_CONSTANT(bool, is_iec559 = false);
BOOST_STATIC_CONSTANT(bool, is_bounded = true);