diff options
author | robot-contrib <[email protected]> | 2022-12-29 10:04:33 +0300 |
---|---|---|
committer | robot-contrib <[email protected]> | 2022-12-29 10:04:33 +0300 |
commit | b4985b619120cd917a2202b50edf9cd90d6fd705 (patch) | |
tree | 9c0cfd26090ee0e88614a1a265893aa3ab39704d | |
parent | 4b9c7f662eed72db1a916fccd5d66c949dd8ffba (diff) |
Update contrib/restricted/boost/variant to 1.81.0
-rw-r--r-- | contrib/restricted/boost/variant/include/boost/variant/recursive_wrapper.hpp | 2 | ||||
-rw-r--r-- | contrib/restricted/boost/variant/include/boost/variant/variant.hpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/contrib/restricted/boost/variant/include/boost/variant/recursive_wrapper.hpp b/contrib/restricted/boost/variant/include/boost/variant/recursive_wrapper.hpp index ef32eddc0e7..f11418d2c6e 100644 --- a/contrib/restricted/boost/variant/include/boost/variant/recursive_wrapper.hpp +++ b/contrib/restricted/boost/variant/include/boost/variant/recursive_wrapper.hpp @@ -15,7 +15,7 @@ #include <boost/variant/recursive_wrapper_fwd.hpp> #include <boost/variant/detail/move.hpp> -#include <boost/checked_delete.hpp> +#include <boost/core/checked_delete.hpp> namespace boost { diff --git a/contrib/restricted/boost/variant/include/boost/variant/variant.hpp b/contrib/restricted/boost/variant/include/boost/variant/variant.hpp index 6ba674a27ef..5cfa351bccb 100644 --- a/contrib/restricted/boost/variant/include/boost/variant/variant.hpp +++ b/contrib/restricted/boost/variant/include/boost/variant/variant.hpp @@ -2131,7 +2131,8 @@ private: // helpers, for modifiers (below) public: // modifiers -#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && \ + (!BOOST_WORKAROUND(BOOST_CLANG_VERSION, BOOST_TESTED_AT(150000)) || BOOST_CXX_VERSION <= 202002L) template <class T> typename boost::enable_if< boost::mpl::and_< |