From d61a52fadd138756291ce1e5764f1d6e8d40b2e2 Mon Sep 17 00:00:00 2001 From: John Fletcher Date: Sun, 16 Feb 2014 21:01:36 +0000 Subject: [PATCH] include/boost/phoenix/core/terminal change actor to Actor in one location - bugfix. --- include/boost/phoenix/core/terminal.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/phoenix/core/terminal.hpp b/include/boost/phoenix/core/terminal.hpp index 2ae807a..dcd2a42 100644 --- a/include/boost/phoenix/core/terminal.hpp +++ b/include/boost/phoenix/core/terminal.hpp @@ -75,7 +75,8 @@ namespace boost { namespace phoenix static const type make(typename call_traits::param_type t) { // ?? Should the next line be Actor not actor which is the default? - actor const e = {base_type::make(t)}; + //actor const e = {base_type::make(t)}; + Actor const e = {base_type::make(t)}; return e; } };