diff --git a/include/boost/phoenix/bind/detail/function_ptr.hpp b/include/boost/phoenix/bind/detail/function_ptr.hpp index 38c92ff..0764b4a 100644 --- a/include/boost/phoenix/bind/detail/function_ptr.hpp +++ b/include/boost/phoenix/bind/detail/function_ptr.hpp @@ -53,8 +53,8 @@ namespace boost { namespace phoenix { namespace detail { typedef RT result_type; - impl(FP fp) - : fp(fp) {} + impl(FP fp_) + : fp(fp_) {} RT operator()() const { @@ -73,8 +73,8 @@ namespace boost { namespace phoenix { namespace detail { typedef RT result_type; - impl(FP fp) - : fp(fp) {} + impl(FP fp_) + : fp(fp_) {} template RT operator()(A &a) const @@ -135,8 +135,8 @@ namespace boost { namespace phoenix { namespace detail { typedef RT result_type; - impl(FP fp) - : fp(fp) {} + impl(FP fp_) + : fp(fp_) {} template RT operator()(BOOST_PHOENIX_A_ref_a) const