Skip to content

Commit

Permalink
Merge pull request #98 from ecatmur/patch-1
Browse files Browse the repository at this point in the history
clang/c++23: disable converting move assignment
  • Loading branch information
apolukhin committed Aug 31, 2022
2 parents d2fdf23 + 70ff370 commit edec2ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/boost/variant/variant.hpp
Expand Up @@ -2131,7 +2131,8 @@ class variant

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_<
Expand Down

0 comments on commit edec2ff

Please sign in to comment.