diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-05-31 17:25:20 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-05-31 17:25:20 +0200 |
commit | daf9c9c8af4ae7b8a1327040287dafb90ed5146b (patch) | |
tree | 1822e74de717eff13faa3ec4532fb6266d418257 /starmath | |
parent | eae70d6b237616fc7e0f2aa1365991c72e76ae4c (diff) |
SmParser::GetTokenTableEntry: -Werror=sign-compare
Change-Id: Iee631653e251b6e4a1b633f25d9d05c10aaff662
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/parse.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx index 7503cb35e20d..4d9a3a9fc663 100644 --- a/starmath/source/parse.cxx +++ b/starmath/source/parse.cxx @@ -334,7 +334,7 @@ const SmTokenTableEntry * SmParser::GetTokenTableEntry( const String &rName ) const SmTokenTableEntry * pRes = 0; if (rName.Len()) { - for (sal_Int32 i = 0; i < SAL_N_ELEMENTS(aTokenTable); ++i) + for (size_t i = 0; i < SAL_N_ELEMENTS(aTokenTable); ++i) { if (rName.EqualsIgnoreCaseAscii( aTokenTable[i].pIdent )) { |