$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r52525 - branches/release/boost/format
From: marshall_at_[hidden]
Date: 2009-04-21 13:02:02
Author: marshall
Date: 2009-04-21 13:02:01 EDT (Tue, 21 Apr 2009)
New Revision: 52525
URL: http://svn.boost.org/trac/boost/changeset/52525
Log:
Merged fix for bug #2455
Text files modified:
branches/release/boost/format/parsing.hpp | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
Modified: branches/release/boost/format/parsing.hpp
==============================================================================
--- branches/release/boost/format/parsing.hpp (original)
+++ branches/release/boost/format/parsing.hpp 2009-04-21 13:02:01 EDT (Tue, 21 Apr 2009)
@@ -48,6 +48,7 @@
#if ! defined( BOOST_NO_LOCALE_ISDIGIT )
return fac.is(std::ctype<Ch>::digit, c);
# else
+ (void) fac; // remove "unused parameter" warning
using namespace std;
return isdigit(c);
#endif