Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r66662 - branches/release/boost/typeof/msvc
From: eric_at_[hidden]
Date: 2010-11-21 16:43:12


Author: eric_niebler
Date: 2010-11-21 16:42:52 EST (Sun, 21 Nov 2010)
New Revision: 66662
URL: http://svn.boost.org/trac/boost/changeset/66662

Log:
fix typeof bug on msvc-7.1 that is causing type_traits/common_type.hpp to fail to compile
Text files modified:
   branches/release/boost/typeof/msvc/typeof_impl.hpp | 4 +++-
   1 files changed, 3 insertions(+), 1 deletions(-)

Modified: branches/release/boost/typeof/msvc/typeof_impl.hpp
==============================================================================
--- branches/release/boost/typeof/msvc/typeof_impl.hpp (original)
+++ branches/release/boost/typeof/msvc/typeof_impl.hpp 2010-11-21 16:42:52 EST (Sun, 21 Nov 2010)
@@ -153,7 +153,9 @@
             };
         };
 # endif
-# if BOOST_WORKAROUND(BOOST_MSVC,==1310)
+// EAN: preprocess this block out on advice of Peder Holt
+// to eliminate errors in type_traits/common_type.hpp
+# if 0 //BOOST_WORKAROUND(BOOST_MSVC,==1310)
         template<const std::type_info& ref_type_info>
         struct msvc_typeid_wrapper {
             typedef typename msvc_extract_type<msvc_typeid_wrapper>::id2type id2type;


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