|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r53228 - trunk/boost/wave/util
From: hartmut.kaiser_at_[hidden]
Date: 2009-05-24 11:48:45
Author: hkaiser
Date: 2009-05-24 11:48:44 EDT (Sun, 24 May 2009)
New Revision: 53228
URL: http://svn.boost.org/trac/boost/changeset/53228
Log:
Wave: fixed another compilation problem on gcc 4.4
Text files modified:
trunk/boost/wave/util/flex_string.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/wave/util/flex_string.hpp
==============================================================================
--- trunk/boost/wave/util/flex_string.hpp (original)
+++ trunk/boost/wave/util/flex_string.hpp 2009-05-24 11:48:44 EDT (Sun, 24 May 2009)
@@ -2136,8 +2136,8 @@
size_type find (const value_type* s, size_type pos, size_type n) const
{
- const size_type size(size());
- if (n + pos > size)
+ const size_type size_(size());
+ if (n + pos > size_)
return npos;
for (; pos < size; ++pos)
{
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