Skip to content

Commit

Permalink
Fix Clang 13 -Wdeprecated-copy warnings (boostorg#261)
Browse files Browse the repository at this point in the history
Clang 13 have new warning under the same group
  • Loading branch information
Kojoley authored Oct 11, 2022
1 parent cd2d748 commit 036b90c
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
#include <boost/fusion/view/transform_view/detail/value_of_data_impl.hpp>
#include <boost/fusion/view/transform_view/detail/deref_data_impl.hpp>

#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable: 4512) // assignment operator could not be generated.
#endif

namespace boost { namespace fusion
{
// Unary Version
Expand All @@ -44,9 +49,6 @@ namespace boost { namespace fusion

first_type first;
transform_type f;

// silence MSVC warning C4512: assignment operator could not be generated
BOOST_DELETED_FUNCTION(transform_view_iterator& operator= (transform_view_iterator const&))
};

// Binary Version
Expand All @@ -71,12 +73,13 @@ namespace boost { namespace fusion
first1_type first1;
first2_type first2;
transform_type f;

// silence MSVC warning C4512: assignment operator could not be generated
BOOST_DELETED_FUNCTION(transform_view_iterator2& operator= (transform_view_iterator2 const&))
};
}}

#ifdef _MSC_VER
# pragma warning(pop)
#endif

#ifdef BOOST_FUSION_WORKAROUND_FOR_LWG_2408
namespace std
{
Expand Down

0 comments on commit 036b90c

Please sign in to comment.