mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
compiler warnings
This commit is contained in:
+2
-2
@@ -481,7 +481,7 @@ int cmake::CMakeCommand(std::vector<std::string>& args)
|
||||
// Echo string
|
||||
else if (args[1] == "echo" )
|
||||
{
|
||||
int cc;
|
||||
unsigned int cc;
|
||||
for ( cc = 2; cc < args.size(); cc ++ )
|
||||
{
|
||||
std::cout << args[cc] << " ";
|
||||
@@ -580,7 +580,7 @@ int cmake::CMakeCommand(std::vector<std::string>& args)
|
||||
// Remove file
|
||||
else if (args[1] == "comspec" && args.size() > 2)
|
||||
{
|
||||
int cc;
|
||||
unsigned int cc;
|
||||
std::string command = args[2];
|
||||
for ( cc = 3; cc < args.size(); cc ++ )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user