diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-01-20 20:26:11 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-01-20 20:26:11 (GMT) |
commit | c66e55a91aaaffb4a2e66d9cec303d4bfbb9252d (patch) | |
tree | 857f390333e9290c3112fb6dd8d3618e44a08afc /Source/cmSetCommand.cxx | |
parent | acdd032109f412a63122337cd9b7ebdde13849bc (diff) | |
download | CMake-c66e55a91aaaffb4a2e66d9cec303d4bfbb9252d.zip CMake-c66e55a91aaaffb4a2e66d9cec303d4bfbb9252d.tar.gz CMake-c66e55a91aaaffb4a2e66d9cec303d4bfbb9252d.tar.bz2 |
COMP: fix unused var warning
Diffstat (limited to 'Source/cmSetCommand.cxx')
-rw-r--r-- | Source/cmSetCommand.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmSetCommand.cxx b/Source/cmSetCommand.cxx index 62a5949..28941b6 100644 --- a/Source/cmSetCommand.cxx +++ b/Source/cmSetCommand.cxx @@ -27,7 +27,6 @@ bool cmSetCommand::InitialPass(std::vector<std::string> const& args) // watch for ENV signatures const char* variable = args[0].c_str(); // VAR is always first - bool haveEnvVariable = false; if (!strncmp(variable,"ENV{",4) && strlen(variable) > 5) { // what is the variable name |