mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-30 04:27:30 +02:00
[transform_view_ext] Unary transform_view is an Associative Sequence now
This commit is contained in:
@ -10,11 +10,6 @@
|
|||||||
#include <boost/fusion/support/config.hpp>
|
#include <boost/fusion/support/config.hpp>
|
||||||
#include <boost/fusion/iterator/deref.hpp>
|
#include <boost/fusion/iterator/deref.hpp>
|
||||||
#include <boost/mpl/if.hpp>
|
#include <boost/mpl/if.hpp>
|
||||||
#include <boost/type_traits/add_const.hpp>
|
|
||||||
#include <boost/type_traits/add_reference.hpp>
|
|
||||||
#include <boost/type_traits/is_const.hpp>
|
|
||||||
#include <boost/type_traits/is_reference.hpp>
|
|
||||||
#include <boost/utility/result_of.hpp>
|
|
||||||
|
|
||||||
namespace boost { namespace fusion
|
namespace boost { namespace fusion
|
||||||
{
|
{
|
||||||
|
@ -23,11 +23,6 @@
|
|||||||
#include <boost/fusion/view/transform_view/detail/value_of_data_impl.hpp>
|
#include <boost/fusion/view/transform_view/detail/value_of_data_impl.hpp>
|
||||||
#include <boost/fusion/view/transform_view/detail/deref_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
|
namespace boost { namespace fusion
|
||||||
{
|
{
|
||||||
// Unary Version
|
// Unary Version
|
||||||
@ -49,6 +44,9 @@ namespace boost { namespace fusion
|
|||||||
|
|
||||||
first_type first;
|
first_type first;
|
||||||
transform_type f;
|
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
|
// Binary Version
|
||||||
@ -73,13 +71,12 @@ namespace boost { namespace fusion
|
|||||||
first1_type first1;
|
first1_type first1;
|
||||||
first2_type first2;
|
first2_type first2;
|
||||||
transform_type f;
|
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
|
#ifdef BOOST_FUSION_WORKAROUND_FOR_LWG_2408
|
||||||
namespace std
|
namespace std
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user