2
0
mirror of https://github.com/boostorg/asio.git synced 2026-02-26 02:42:08 +00:00

Wrap long line.

[SVN r58621]
This commit is contained in:
Christopher Kohlhoff
2010-01-01 23:04:35 +00:00
parent afa4f59dbb
commit c901425aa0

View File

@@ -432,12 +432,14 @@ public:
~buffer_debug_check()
{
#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) && BOOST_WORKAROUND(BOOST_MSVC, < 1600)
#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) && BOOST_WORKAROUND(BOOST_MSVC, < 1600)
#endif // BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
// && BOOST_WORKAROUND(BOOST_MSVC, < 1600)
}
void operator()()