Avoid compiler warning
authorChristoph Sommer <mail@christoph-sommer.de>
Sat, 3 Nov 2007 16:31:34 +0000 (16:31 +0000)
committerChristoph Sommer <mail@christoph-sommer.de>
Sat, 3 Nov 2007 16:31:34 +0000 (16:31 +0000)
SVN-Revision: 5177

src/squirrel/sqdbg/sqdbgserver.h

index 8c3fc28..4d91192 100644 (file)
@@ -33,7 +33,8 @@ typedef std::basic_string<SQChar> SQDBGString;
 
 inline bool dbg_less(const SQChar *x,const SQChar *y)
 {
-       int n = 0;
+       // [SuperTux] commented out to avoid compiler warning
+       //int n = 0;
        do {
                int xl = *x == '\\' ? '/' : tolower(*x);
                int yl = *y == '\\' ? '/' : tolower(*y);