Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80311 - in branches/release/boost/icl: . concept
From: afojgo_at_[hidden]
Date: 2012-08-29 17:04:22


Author: jofaber
Date: 2012-08-29 17:04:22 EDT (Wed, 29 Aug 2012)
New Revision: 80311
URL: http://svn.boost.org/trac/boost/changeset/80311

Log:
Merged revision(s) 80299 from trunk/boost/icl:
Fixed return type on operator +=
........

Properties modified:
   branches/release/boost/icl/ (props changed)
Text files modified:
   branches/release/boost/icl/concept/element_associator.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: branches/release/boost/icl/concept/element_associator.hpp
==============================================================================
--- branches/release/boost/icl/concept/element_associator.hpp (original)
+++ branches/release/boost/icl/concept/element_associator.hpp 2012-08-29 17:04:22 EDT (Wed, 29 Aug 2012)
@@ -188,7 +188,7 @@
 }
 
 template <class Type>
-inline typename enable_if<is_associative_element_container<Type>, Type>::type
+inline typename enable_if<is_associative_element_container<Type>, Type>::type&
 operator += (Type& object, const Type& operand)
 {
     if(&object == &operand)


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