|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r72262 - in branches/release: . boost boost/spirit boost/spirit/home boost/spirit/home/support/utree/detail
From: hartmut.kaiser_at_[hidden]
Date: 2011-05-29 11:38:01
Author: hkaiser
Date: 2011-05-29 11:38:00 EDT (Sun, 29 May 2011)
New Revision: 72262
URL: http://svn.boost.org/trac/boost/changeset/72262
Log:
Spirit: merging fixed inlining problem from trunk
Properties modified:
branches/release/ (props changed)
branches/release/boost/ (props changed)
branches/release/boost/spirit/ (props changed)
branches/release/boost/spirit/home/ (props changed)
Text files modified:
branches/release/boost/spirit/home/support/utree/detail/utree_detail2.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/boost/spirit/home/support/utree/detail/utree_detail2.hpp
==============================================================================
--- branches/release/boost/spirit/home/support/utree/detail/utree_detail2.hpp (original)
+++ branches/release/boost/spirit/home/support/utree/detail/utree_detail2.hpp 2011-05-29 11:38:00 EDT (Sun, 29 May 2011)
@@ -940,7 +940,7 @@
return *this;
}
- utree& utree::operator=(function_base const& pf_)
+ inline utree& utree::operator=(function_base const& pf_)
{
free();
pf = pf_.clone();
@@ -948,7 +948,7 @@
return *this;
}
- utree& utree::operator=(function_base* pf_)
+ inline utree& utree::operator=(function_base* pf_)
{
free();
pf = pf_;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk