Fix warnings in CMake source code. Suppress rampant warnings emanating from Qt files.

This commit is contained in:
David Cole
2009-10-01 16:47:08 -04:00
parent 86459a89a1
commit 44bcba7461
10 changed files with 27 additions and 18 deletions
+2 -2
View File
@@ -53,7 +53,7 @@ static void cmScriptGeneratorEncodeConfig(const char* config,
if(*c >= 'a' && *c <= 'z')
{
result += "[";
result += *c + ('A' - 'a');
result += static_cast<char>(*c + 'A' - 'a');
result += *c;
result += "]";
}
@@ -61,7 +61,7 @@ static void cmScriptGeneratorEncodeConfig(const char* config,
{
result += "[";
result += *c;
result += *c + ('a' - 'A');
result += static_cast<char>(*c + 'a' - 'A');
result += "]";
}
else