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

include/boost/phoenix/core/terminal change actor to Actor in one location - bugfix.

This commit is contained in:
John Fletcher
2014-02-16 21:01:36 +00:00
parent 2781d36506
commit d61a52fadd

View File

@@ -75,7 +75,8 @@ namespace boost { namespace phoenix
static const type make(typename call_traits<T>::param_type t)
{ // ?? Should the next line be Actor not actor which is the default?
actor<base_type> const e = {base_type::make(t)};
//actor<base_type> const e = {base_type::make(t)};
Actor<base_type> const e = {base_type::make(t)};
return e;
}
};