diff --git a/include/boost/phoenix/function/function.hpp b/include/boost/phoenix/function/function.hpp index 10bdab7..cff0430 100644 --- a/include/boost/phoenix/function/function.hpp +++ b/include/boost/phoenix/function/function.hpp @@ -8,6 +8,7 @@ #ifndef BOOST_PHOENIX_FUNCTION_FUNCTION_HPP #define BOOST_PHOENIX_FUNCTION_FUNCTION_HPP +#include //#include #include #include @@ -24,9 +25,11 @@ namespace boost { namespace phoenix template struct function { - function() {} + BOOST_CONSTEXPR function() + : f() + {} - function(F f) + BOOST_CONSTEXPR function(F f) : f(f) {}