diff --git a/include/boost/phoenix/core/environment.hpp b/include/boost/phoenix/core/environment.hpp index 7984fa2..1d2e448 100644 --- a/include/boost/phoenix/core/environment.hpp +++ b/include/boost/phoenix/core/environment.hpp @@ -11,8 +11,8 @@ namespace boost { namespace phoenix { -// template -// struct is_environment : fusion::is_sequence {}; + template + struct is_environment : fusion::traits::is_sequence {}; namespace result_of { diff --git a/include/boost/phoenix/core/nothing.hpp b/include/boost/phoenix/core/nothing.hpp index 8c7f021..7ce4665 100644 --- a/include/boost/phoenix/core/nothing.hpp +++ b/include/boost/phoenix/core/nothing.hpp @@ -12,26 +12,24 @@ namespace boost { namespace phoenix { -/////////////////////////////////////////////////////////////////////////////// -// -// null_actor -// -// A actor that does nothing (a "bum", if you will :-). -// -/////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////// + // + // null_actor + // + // A actor that does nothing (a "bum", if you will :-). + // + //////////////////////////////////////////////////////////////////////////// struct null_actor { typedef void result_type; template - void - eval(Env const&) const + void eval(Env const&) const { } }; as_actor::result_type const nothing = {}; - }} #endif