$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r52258 - trunk/boost/format
From: marshall_at_[hidden]
Date: 2009-04-08 12:14:24
Author: marshall
Date: 2009-04-08 12:14:22 EDT (Wed, 08 Apr 2009)
New Revision: 52258
URL: http://svn.boost.org/trac/boost/changeset/52258
Log:
Fixed unused parameter - bug #2455
Text files modified:
trunk/boost/format/parsing.hpp | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
Modified: trunk/boost/format/parsing.hpp
==============================================================================
--- trunk/boost/format/parsing.hpp (original)
+++ trunk/boost/format/parsing.hpp 2009-04-08 12:14:22 EDT (Wed, 08 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