diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2024-04-30 10:48:32 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2024-04-30 11:24:11 +0300 |
commit | 9e77d95f01ead6862b8659bae694bfd74f1340d2 (patch) | |
tree | bad8e5a3172b1390f8ba069ccf7d7ece385ee19c | |
parent | 7acf1f5351381ef9a2fb235c3dbc829c1ee340ad (diff) | |
download | ydb-9e77d95f01ead6862b8659bae694bfd74f1340d2.tar.gz |
Update contrib/restricted/boost/preprocessor to 1.85.0
4ffdf013ad60009e89d66d2c26bbb8aa70dd4392
-rw-r--r-- | contrib/restricted/boost/preprocessor/include/boost/preprocessor/variadic/has_opt.hpp | 2 | ||||
-rw-r--r-- | contrib/restricted/boost/preprocessor/ya.make | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/contrib/restricted/boost/preprocessor/include/boost/preprocessor/variadic/has_opt.hpp b/contrib/restricted/boost/preprocessor/include/boost/preprocessor/variadic/has_opt.hpp index 7054e9455e..bb40e3787f 100644 --- a/contrib/restricted/boost/preprocessor/include/boost/preprocessor/variadic/has_opt.hpp +++ b/contrib/restricted/boost/preprocessor/include/boost/preprocessor/variadic/has_opt.hpp @@ -19,6 +19,8 @@ # if defined(__cplusplus) && __cplusplus > 201703L # if defined(__GNUC__) && !defined(__clang__) && __GNUC__ >= 8 && __GNUC__ < 10 # define BOOST_PP_VARIADIC_HAS_OPT() 0 +# elif defined(__clang__) && __clang_major__ < 9 +# define BOOST_PP_VARIADIC_HAS_OPT() 0 # else # include <boost/preprocessor/variadic/detail/has_opt.hpp> # define BOOST_PP_VARIADIC_HAS_OPT() \ diff --git a/contrib/restricted/boost/preprocessor/ya.make b/contrib/restricted/boost/preprocessor/ya.make index bbe986b111..b29bd03d9d 100644 --- a/contrib/restricted/boost/preprocessor/ya.make +++ b/contrib/restricted/boost/preprocessor/ya.make @@ -6,9 +6,9 @@ LICENSE(BSL-1.0) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(1.84.0) +VERSION(1.85.0) -ORIGINAL_SOURCE(https://github.com/boostorg/preprocessor/archive/boost-1.84.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/boostorg/preprocessor/archive/boost-1.85.0.tar.gz) ADDINCL( GLOBAL contrib/restricted/boost/preprocessor/include |