sax: -Werror=sign-compare

Change-Id: I2e7d482b29fc5859c32fa1731a5f1fd551509e88
This commit is contained in:
Miklos Vajna 2013-11-20 07:49:00 +01:00
parent 5b1480e33d
commit ada73e588f

View File

@ -194,7 +194,7 @@ sal_Int32 FastTokenLookup::getTokenFromChars(
if( !nLen )
nLen = strlen( pToken );
if ( nLen < mnUtf8BufferSize )
if ( static_cast<sal_Int32>(nLen) < mnUtf8BufferSize )
{
// Get intimiate with the underlying sequence cf. sal/types.h
sal_Sequence *pSeq = maUtf8Buffer.get();