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

merge [85488] from trunk, fixes #9049

[SVN r85550]
This commit is contained in:
Eric Niebler
2013-09-03 17:47:12 +00:00
parent a1cf2d1194
commit 8e473f2d26

View File

@@ -8,6 +8,7 @@
#ifndef BOOST_PHOENIX_FUNCTION_FUNCTION_HPP
#define BOOST_PHOENIX_FUNCTION_FUNCTION_HPP
#include <boost/config.hpp>
//#include <boost/phoenix/function/function_handling.hpp>
#include <boost/phoenix/core/detail/function_eval.hpp>
#include <boost/preprocessor/facilities/expand.hpp>
@@ -24,9 +25,11 @@ namespace boost { namespace phoenix
template<typename F>
struct function
{
function() {}
BOOST_CONSTEXPR function()
: f()
{}
function(F f)
BOOST_CONSTEXPR function(F f)
: f(f)
{}