|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r85900 - trunk/boost/iostreams/detail/config
From: steveire_at_[hidden]
Date: 2013-09-25 09:23:57
Author: skelly
Date: 2013-09-25 09:23:57 EDT (Wed, 25 Sep 2013)
New Revision: 85900
URL: http://svn.boost.org/trac/boost/changeset/85900
Log:
IOstreams: Remove obsolete MSVC version check
Text files modified:
trunk/boost/iostreams/detail/config/auto_link.hpp | 2 +-
trunk/boost/iostreams/detail/config/bzip2.hpp | 2 +-
trunk/boost/iostreams/detail/config/zlib.hpp | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/iostreams/detail/config/auto_link.hpp
==============================================================================
--- trunk/boost/iostreams/detail/config/auto_link.hpp Wed Sep 25 07:54:19 2013 (r85899)
+++ trunk/boost/iostreams/detail/config/auto_link.hpp 2013-09-25 09:23:57 EDT (Wed, 25 Sep 2013) (r85900)
@@ -19,7 +19,7 @@
# if defined(BOOST_MSVC) \
|| defined(__BORLANDC__) \
|| (defined(__MWERKS__) && defined(_WIN32) && (__MWERKS__ >= 0x3000)) \
- || (defined(__ICL) && defined(_MSC_EXTENSIONS) && (_MSC_VER >= 1200)) \
+ || (defined(__ICL) && defined(_MSC_EXTENSIONS)) \
/**/
# pragma comment(lib, BOOST_EXTERNAL_LIB_NAME)
# endif
Modified: trunk/boost/iostreams/detail/config/bzip2.hpp
==============================================================================
--- trunk/boost/iostreams/detail/config/bzip2.hpp Wed Sep 25 07:54:19 2013 (r85899)
+++ trunk/boost/iostreams/detail/config/bzip2.hpp 2013-09-25 09:23:57 EDT (Wed, 25 Sep 2013) (r85900)
@@ -19,7 +19,7 @@
# if defined(BOOST_MSVC) || \
defined(__BORLANDC__) || \
(defined(__MWERKS__) && defined(_WIN32) && (__MWERKS__ >= 0x3000)) || \
- (defined(__ICL) && defined(_MSC_EXTENSIONS) && (_MSC_VER >= 1200)) \
+ (defined(__ICL) && defined(_MSC_EXTENSIONS)) \
/**/
// Specify the name of the .lib file.
Modified: trunk/boost/iostreams/detail/config/zlib.hpp
==============================================================================
--- trunk/boost/iostreams/detail/config/zlib.hpp Wed Sep 25 07:54:19 2013 (r85899)
+++ trunk/boost/iostreams/detail/config/zlib.hpp 2013-09-25 09:23:57 EDT (Wed, 25 Sep 2013) (r85900)
@@ -21,7 +21,7 @@
# if defined(BOOST_MSVC) || \
defined(__BORLANDC__) || \
(defined(__MWERKS__) && defined(_WIN32) && (__MWERKS__ >= 0x3000)) || \
- (defined(__ICL) && defined(_MSC_EXTENSIONS) && (_MSC_VER >= 1200)) \
+ (defined(__ICL) && defined(_MSC_EXTENSIONS)) \
/**/
// Specify the name of the .lib file.
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