]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/utility/addressof.hpp
Also display the info about BibTeX databases in the TeX info panel.
[lyx.git] / boost / boost / utility / addressof.hpp
index ac42a5173825a02204bbc6807d6adc908c9b9370..95cd92fca9bb940ae0f9a289268a0fe4a9305b68 100644 (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