diff options
author | Ken Martin <ken.martin@kitware.com> | 2004-05-04 13:16:06 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2004-05-04 13:16:06 (GMT) |
commit | 1f6e59a7fea67b1e231309587a4db7cb5c8efcad (patch) | |
tree | 52c5425e702c5c7c4bbe181f45f123c84899702b | |
parent | b691517eeb9afea2b04f33daf7f6293fd3bd2943 (diff) | |
download | CMake-1f6e59a7fea67b1e231309587a4db7cb5c8efcad.zip CMake-1f6e59a7fea67b1e231309587a4db7cb5c8efcad.tar.gz CMake-1f6e59a7fea67b1e231309587a4db7cb5c8efcad.tar.bz2 |
fix warning
-rw-r--r-- | Source/cmIfCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index 5c6c632..5339cc0 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -162,7 +162,7 @@ bool cmIfCommand::IsTrue(const std::vector<std::string> &args, // store the reduced args in this vector std::deque<std::string> newArgs; - int reducible = 1; + int reducible; unsigned int i; // copy to the list structure |