eliminate noisy warning on msvc, fixes #2993

[SVN r52837]
This commit is contained in:
Eric Niebler
2014-06-01 01:20:35 +03:00
committed by Peter Dimov
parent 09bb576ae8
commit 4f645eb49c
+3
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