Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53054 - in branches/release: . boost/utility
From: eric_at_[hidden]
Date: 2009-05-16 14:15:18


Author: eric_niebler
Date: 2009-05-16 14:15:17 EDT (Sat, 16 May 2009)
New Revision: 53054
URL: http://svn.boost.org/trac/boost/changeset/53054

Log:
Merged revisions 52837 via svnmerge from
https://svn.boost.org/svn/boost/trunk

........
  r52837 | eric_niebler | 2009-05-07 10:47:08 -0700 (Thu, 07 May 2009) | 1 line
  
  eliminate noisy warning on msvc
........

Properties modified:
   branches/release/ (props changed)
Text files modified:
   branches/release/boost/utility/addressof.hpp | 3 +++
   1 files changed, 3 insertions(+), 0 deletions(-)

Modified: branches/release/boost/utility/addressof.hpp
==============================================================================
--- branches/release/boost/utility/addressof.hpp (original)
+++ branches/release/boost/utility/addressof.hpp 2009-05-16 14:15:17 EDT (Sat, 16 May 2009)
@@ -27,6 +27,9 @@
 
     inline addr_impl_ref( T & v ): v_( v ) {}
     inline operator T& () const { return v_; }
+
+private:
+ addr_impl_ref & operator=(const addr_impl_ref &);
 };
 
 template<class T> struct addressof_impl


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