Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59837 - trunk/boost/exception
From: emil_at_[hidden]
Date: 2010-02-22 00:52:41


Author: emildotchevski
Date: 2010-02-22 00:52:40 EST (Mon, 22 Feb 2010)
New Revision: 59837
URL: http://svn.boost.org/trac/boost/changeset/59837

Log:
msvc 7.1 regression, thanks Joaquin
Text files modified:
   trunk/boost/exception/exception.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/exception/exception.hpp
==============================================================================
--- trunk/boost/exception/exception.hpp (original)
+++ trunk/boost/exception/exception.hpp 2010-02-22 00:52:40 EST (Mon, 22 Feb 2010)
@@ -219,7 +219,7 @@
 #endif
             ;
 
-#if defined(__MWERKS__) && __MWERKS__<=0x3207
+#if (defined(__MWERKS__) && __MWERKS__<=0x3207) || (defined(_MSC_VER) && _MSC_VER<=1310)
         public:
 #else
         private:


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