]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/utility/addressof.hpp
Boost 1.31.0
[lyx.git] / boost / boost / utility / addressof.hpp
index a434b8e7d681ad9d12d34fa370689174f098f3c4..de8dfe5d5968c10aa8e2d0e90697a69bc26aba2e 100644 (file)
 // For more information, see http://www.boost.org
 
 #ifndef BOOST_UTILITY_ADDRESSOF_HPP
-#define BOOST_UTILITY_ADDRESSOF_HPP
+# define BOOST_UTILITY_ADDRESSOF_HPP
+
+# include <boost/config.hpp>
+# include <boost/detail/workaround.hpp>
+# if BOOST_WORKAROUND(BOOST_MSVC, == 1300)
+#  include <boost/type_traits/add_pointer.hpp>
+# endif
 
 namespace boost {
 
 // Do not make addressof() inline. Breaks MSVC 7. (Peter Dimov)
 
-template <typename T> T* addressof(T& v)
+// VC7 strips const from nested classes unless we add indirection here
+# if BOOST_WORKAROUND(BOOST_MSVC, == 1300)
+template <typename T> typename add_pointer<T>::type
+# else
+template <typename T> T*
+# endif
+addressof(T& v)
 {
   return reinterpret_cast<T*>(
        &const_cast<char&>(reinterpret_cast<const volatile char &>(v)));