mirror of
https://github.com/boostorg/asio.git
synced 2026-02-26 02:42:08 +00:00
Asio: disabled VC workaround for VC2010 beta2 compiler
[SVN r57393]
This commit is contained in:
@@ -432,12 +432,12 @@ public:
|
||||
|
||||
~buffer_debug_check()
|
||||
{
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) && BOOST_WORKAROUND(BOOST_MSVC, < 1600)
|
||||
// MSVC's string iterator checking may crash in a std::string::iterator
|
||||
// object's destructor when the iterator points to an already-destroyed
|
||||
// std::string object, unless the iterator is cleared first.
|
||||
iter_ = Iterator();
|
||||
#endif // BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
|
||||
#endif // BOOST_WORKAROUND(BOOST_MSVC, >= 1400) && BOOST_WORKAROUND(BOOST_MSVC, < 1600)
|
||||
}
|
||||
|
||||
void operator()()
|
||||
|
||||
Reference in New Issue
Block a user