|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r72257 - trunk/boost/spirit/home/support/utree/detail
From: blelbach_at_[hidden]
Date: 2011-05-29 00:54:58
Author: wash
Date: 2011-05-29 00:54:57 EDT (Sun, 29 May 2011)
New Revision: 72257
URL: http://svn.boost.org/trac/boost/changeset/72257
Log:
Inline utree operator= to avoid multiple definition errors.
Text files modified:
trunk/boost/spirit/home/support/utree/detail/utree_detail2.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/spirit/home/support/utree/detail/utree_detail2.hpp
==============================================================================
--- trunk/boost/spirit/home/support/utree/detail/utree_detail2.hpp (original)
+++ trunk/boost/spirit/home/support/utree/detail/utree_detail2.hpp 2011-05-29 00:54:57 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