|
Boost-Commit : |
From: hartmut.kaiser_at_[hidden]
Date: 2008-03-25 09:40:22
Author: hkaiser
Date: 2008-03-25 09:40:22 EDT (Tue, 25 Mar 2008)
New Revision: 43851
URL: http://svn.boost.org/trac/boost/changeset/43851
Log:
Wave: Removed an assertion causing compilation problems on certain platforms.
Text files modified:
branches/release/boost/wave/util/flex_string.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/boost/wave/util/flex_string.hpp
==============================================================================
--- branches/release/boost/wave/util/flex_string.hpp (original)
+++ branches/release/boost/wave/util/flex_string.hpp 2008-03-25 09:40:22 EDT (Tue, 25 Mar 2008)
@@ -705,8 +705,8 @@
if (capacity() < neededCapacity)
{
- typedef std::less_equal<const E*> le_type;
- BOOST_ASSERT(!(le_type()(begin(), &*b) && le_type()(&*b, end())));
+// typedef std::less_equal<const E*> le_type;
+// BOOST_ASSERT(!(le_type()(begin(), &*b) && le_type()(&*b, end())));
reserve(neededCapacity);
}
std::copy(b, e, end());
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