Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r72726 - trunk/boost/iostreams/detail
From: dnljms_at_[hidden]
Date: 2011-06-23 15:08:55


Author: danieljames
Date: 2011-06-23 15:08:55 EDT (Thu, 23 Jun 2011)
New Revision: 72726
URL: http://svn.boost.org/trac/boost/changeset/72726

Log:
Iostreams: Use sfinae workaround in Visual C++ 8, as well as 7.1.

Text files modified:
   trunk/boost/iostreams/detail/path.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/iostreams/detail/path.hpp
==============================================================================
--- trunk/boost/iostreams/detail/path.hpp (original)
+++ trunk/boost/iostreams/detail/path.hpp 2011-06-23 15:08:55 EDT (Thu, 23 Jun 2011)
@@ -98,10 +98,10 @@
         return *this;
     }
 
-#if !BOOST_WORKAROUND(BOOST_MSVC, < 1400)
+#if !BOOST_WORKAROUND(BOOST_MSVC, <= 1400)
     // Assignment operator taking a boost::filesystem2::path or
     // boost::filesystem2::wpath
- // (not on Visual C++ 7.1, as it seems to have problems with
+ // (not on Visual C++ 7.1/8.0, as it seems to have problems with
     // SFINAE functions with the same parameters, doesn't seem
     // worth working around).
     template<typename Path>


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