summaryrefslogtreecommitdiff
path: root/boost/spirit/home/lex/detail/sequence_function.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/lex/detail/sequence_function.hpp')
-rw-r--r--boost/spirit/home/lex/detail/sequence_function.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/boost/spirit/home/lex/detail/sequence_function.hpp b/boost/spirit/home/lex/detail/sequence_function.hpp
index 0f52da8413..4f41ccbb45 100644
--- a/boost/spirit/home/lex/detail/sequence_function.hpp
+++ b/boost/spirit/home/lex/detail/sequence_function.hpp
@@ -33,9 +33,8 @@ namespace boost { namespace spirit { namespace lex { namespace detail
String const& state;
String const& targetstate;
- private:
// silence MSVC warning C4512: assignment operator could not be generated
- sequence_collect_function& operator= (sequence_collect_function const&);
+ BOOST_DELETED_FUNCTION(sequence_collect_function& operator= (sequence_collect_function const&))
};
template <typename LexerDef>
@@ -53,9 +52,8 @@ namespace boost { namespace spirit { namespace lex { namespace detail
LexerDef& def;
- private:
// silence MSVC warning C4512: assignment operator could not be generated
- sequence_add_actions_function& operator= (sequence_add_actions_function const&);
+ BOOST_DELETED_FUNCTION(sequence_add_actions_function& operator= (sequence_add_actions_function const&))
};
}}}}