2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-14 13:02:10 +00:00

Boost.Phoenix:

- Adding boost::phoenix::expression::function, aliasing
      boost::phoenix::detail::expression::function_eval, this makes the example
      compile again



[SVN r79223]
This commit is contained in:
Thomas Heller
2012-07-02 06:26:27 +00:00
parent 683f27ed0e
commit d29cb5621f

View File

@@ -19,6 +19,14 @@ namespace boost { namespace phoenix
/////////////////////////////////////////////////////////////////////////////
// Functions
/////////////////////////////////////////////////////////////////////////////
namespace expression
{
template <typename F, BOOST_PHOENIX_typename_A_void(BOOST_PHOENIX_ACTOR_LIMIT)>
struct function
: detail::expression::function_eval<F, BOOST_PHOENIX_A(BOOST_PHOENIX_ACTOR_LIMIT)>
{};
}
// functor which returns our lazy function call extension
template<typename F>