Index: boost/phoenix/function/function.hpp =================================================================== --- boost/phoenix/function/function.hpp (revision 85423) +++ boost/phoenix/function/function.hpp (working copy) @@ -8,6 +8,7 @@ #ifndef BOOST_PHOENIX_FUNCTION_FUNCTION_HPP #define BOOST_PHOENIX_FUNCTION_FUNCTION_HPP +#include //#include #include #include @@ -32,9 +33,11 @@ template struct function { - function() {} + BOOST_CONSTEXPR function() + : f() + {} - function(F f) + BOOST_CONSTEXPR function(F f) : f(f) {}