diff options
Diffstat (limited to 'boost/spirit/home/classic/phoenix/actor.hpp')
-rw-r--r-- | boost/spirit/home/classic/phoenix/actor.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/boost/spirit/home/classic/phoenix/actor.hpp b/boost/spirit/home/classic/phoenix/actor.hpp index 67a4b02898..e05b4f84ff 100644 --- a/boost/spirit/home/classic/phoenix/actor.hpp +++ b/boost/spirit/home/classic/phoenix/actor.hpp @@ -10,6 +10,7 @@ /////////////////////////////////////////////////////////////////////////////// #include <boost/spirit/home/classic/phoenix/tuples.hpp> +#include <boost/type_traits/remove_reference.hpp> /////////////////////////////////////////////////////////////////////////////// namespace phoenix { @@ -120,7 +121,7 @@ template <typename ActorT, typename TupleT> struct actor_result { typedef typename ActorT::template result<TupleT>::type type; - typedef typename remove_reference<type>::type plain_type; + typedef typename boost::remove_reference<type>::type plain_type; }; ////////////////////////////////// |