|
From: <pst...@us...> - 2008-04-21 03:20:12
|
Revision: 470
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=470&view=rev
Author: pstieber
Date: 2008-04-20 20:20:07 -0700 (Sun, 20 Apr 2008)
Log Message:
-----------
Fixed a signed-unsigned comparison warning.exit
Modified Paths:
--------------
trunk/jazz/src/KeyStringConverters.cpp
Modified: trunk/jazz/src/KeyStringConverters.cpp
===================================================================
--- trunk/jazz/src/KeyStringConverters.cpp 2008-04-21 03:14:43 UTC (rev 469)
+++ trunk/jazz/src/KeyStringConverters.cpp 2008-04-21 03:20:07 UTC (rev 470)
@@ -76,7 +76,7 @@
int Key = 0;
- for (int i = 0; i < String.length(); ++i)
+ for (unsigned i = 0; i < String.length(); ++i)
{
if (String[i] == '#')
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|