Fix warnings.

This commit is contained in:
Steve Checkoway
2005-12-29 02:03:14 +00:00
parent 451bb4c396
commit 2985f1a6ec
+2 -2
View File
@@ -448,7 +448,7 @@ static const LanguageInfo g_langs[] =
void GetLanguageInfos( vector<const LanguageInfo*> &vAddTo )
{
for( int i=0; i<ARRAYSIZE(g_langs); i++ )
for( unsigned i=0; i<ARRAYSIZE(g_langs); ++i )
{
// Only use languages in the intersection of Windows languages
// and languages that had native forms on the site listed above.
@@ -462,7 +462,7 @@ void GetLanguageInfos( vector<const LanguageInfo*> &vAddTo )
const LanguageInfo *GetLanguageInfo( const RString &sIsoCode )
{
for( int i=0; i<ARRAYSIZE(g_langs); i++ )
for( unsigned i=0; i<ARRAYSIZE(g_langs); ++i )
{
// Only use languages in the intersection of Windows languages
// and languages that had native forms on the site listed above.