diff options
author | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-08-10 11:03:49 +0300 |
---|---|---|
committer | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-08-10 11:03:49 +0300 |
commit | 9ee1ce1f6aa9c9364082aa7d9b9f5234ceac9757 (patch) | |
tree | d9ed6311f763a67f646b80dcd14ada957a2c272a | |
parent | 07163912675dd114719ec1090ae095355b51ad75 (diff) | |
download | ydb-9ee1ce1f6aa9c9364082aa7d9b9f5234ceac9757.tar.gz |
Mute Boost header deprecation warnings during update
Having vastly different Boost module versions causes a lot of header deprecation warnings.
Mute them until 1.67 -> 1.79 update is complete.
-rw-r--r-- | contrib/restricted/boost/config/include/boost/config/header_deprecated.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/restricted/boost/config/include/boost/config/header_deprecated.hpp b/contrib/restricted/boost/config/include/boost/config/header_deprecated.hpp index 864554f2a2..9f508e6641 100644 --- a/contrib/restricted/boost/config/include/boost/config/header_deprecated.hpp +++ b/contrib/restricted/boost/config/include/boost/config/header_deprecated.hpp @@ -17,7 +17,7 @@ #include <boost/config/pragma_message.hpp> -#if defined(BOOST_ALLOW_DEPRECATED_HEADERS) +#if 1 //defined(BOOST_ALLOW_DEPRECATED_HEADERS) # define BOOST_HEADER_DEPRECATED(a) #else # define BOOST_HEADER_DEPRECATED(a) BOOST_PRAGMA_MESSAGE("This header is deprecated. Use " a " instead.") |