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
........


[SVN r53054]
This commit is contained in:
Eric Niebler 2009-05-16 18:15:17 +00:00
parent eaaf17a88f
commit 51f9adbfa1

View File

@ -27,6 +27,9 @@ template<class T> struct addr_impl_ref
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