|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r86037 - trunk/boost
From: steveire_at_[hidden]
Date: 2013-09-29 20:21:08
Author: skelly
Date: 2013-09-29 20:21:08 EDT (Sun, 29 Sep 2013)
New Revision: 86037
URL: http://svn.boost.org/trac/boost/changeset/86037
Log:
Tokenizer: Remove obsolete MSVC version check.
Text files modified:
trunk/boost/token_functions.hpp | 15 ---------------
1 files changed, 0 insertions(+), 15 deletions(-)
Modified: trunk/boost/token_functions.hpp
==============================================================================
--- trunk/boost/token_functions.hpp Sun Sep 29 20:20:56 2013 (r86036)
+++ trunk/boost/token_functions.hpp 2013-09-29 20:21:08 EDT (Sun, 29 Sep 2013) (r86037)
@@ -278,22 +278,7 @@
struct assign_or_plus_equal {
template<class Iterator, class Token>
static void assign(Iterator b, Iterator e, Token &t) {
-
-#if BOOST_WORKAROUND(BOOST_MSVC, < 1300) &&\
- BOOST_WORKAROUND(__SGI_STL_PORT, < 0x500) &&\
- defined(_STLP_DEBUG) &&\
- (defined(_STLP_USE_DYNAMIC_LIB) || defined(_DLL))
- // Problem with string::assign for msvc-stlport in debug mode: the
- // linker tries to import the templatized version of this memfun,
- // which is obviously not exported.
- // See http://www.stlport.com/dcforum/DCForumID6/1763.html for details.
-
- t = Token();
- while(b != e) t += *b++;
-#else
t.assign(b, e);
-#endif
-
}
template<class Token, class Value>
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