|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r57472 - trunk/libs/spirit/test/lex
From: hartmut.kaiser_at_[hidden]
Date: 2009-11-07 17:58:07
Author: hkaiser
Date: 2009-11-07 17:58:06 EST (Sat, 07 Nov 2009)
New Revision: 57472
URL: http://svn.boost.org/trac/boost/changeset/57472
Log:
Spirit: fixing more warnings
Text files modified:
trunk/libs/spirit/test/lex/set_token_value.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/spirit/test/lex/set_token_value.cpp
==============================================================================
--- trunk/libs/spirit/test/lex/set_token_value.cpp (original)
+++ trunk/libs/spirit/test/lex/set_token_value.cpp 2009-11-07 17:58:06 EST (Sat, 07 Nov 2009)
@@ -140,7 +140,7 @@
{
if (*i == -1)
return false; // reached end of expected data
- if (indents.top() != *i)
+ if (indents.top() != static_cast<unsigned int>(*i))
return false; // value must match
++i;
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