$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r68377 - trunk/boost/spirit/home/phoenix/core
From: joel_at_[hidden]
Date: 2011-01-23 05:49:21
Author: djowel
Date: 2011-01-23 05:49:16 EST (Sun, 23 Jan 2011)
New Revision: 68377
URL: http://svn.boost.org/trac/boost/changeset/68377
Log:
Added default construction of values + assignment operator for actors.
Text files modified:
trunk/boost/spirit/home/phoenix/core/actor.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/spirit/home/phoenix/core/actor.hpp
==============================================================================
--- trunk/boost/spirit/home/phoenix/core/actor.hpp (original)
+++ trunk/boost/spirit/home/phoenix/core/actor.hpp 2011-01-23 05:49:16 EST (Sun, 23 Jan 2011)
@@ -88,13 +88,13 @@
actor& operator=(actor const& rhs)
{
- Base::operator=(rhs);
+ Eval::operator=(rhs);
return *this;
}
actor& operator=(actor& rhs)
{
- Base::operator=(rhs);
+ Eval::operator=(rhs);
return *this;
}