diff options
author | Ken Martin <ken.martin@kitware.com> | 2004-05-12 19:34:06 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2004-05-12 19:34:06 (GMT) |
commit | 5b145fe592f447e8f2f42445e5a2d68a00e1205c (patch) | |
tree | eacd6affbe98b63ff2c98e4598fe3c0ac80eaea9 /Source/cmEndForEachCommand.cxx | |
parent | 79fcc81b6a031cab21e8bd0e3487cdb542aed7ff (diff) | |
download | CMake-5b145fe592f447e8f2f42445e5a2d68a00e1205c.zip CMake-5b145fe592f447e8f2f42445e5a2d68a00e1205c.tar.gz CMake-5b145fe592f447e8f2f42445e5a2d68a00e1205c.tar.bz2 |
fix warning
Diffstat (limited to 'Source/cmEndForEachCommand.cxx')
-rw-r--r-- | Source/cmEndForEachCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmEndForEachCommand.cxx b/Source/cmEndForEachCommand.cxx index 6324d11..aa9a333 100644 --- a/Source/cmEndForEachCommand.cxx +++ b/Source/cmEndForEachCommand.cxx @@ -16,7 +16,7 @@ =========================================================================*/ #include "cmEndForEachCommand.h" -bool cmEndForEachCommand::InvokeInitialPass(std::vector<cmListFileArgument> const& args) +bool cmEndForEachCommand::InvokeInitialPass(std::vector<cmListFileArgument> const&) { this->SetError("An ENDFOREACH command was found outside of a proper FOREACH ENDFOREACH structure. Or its arguments did not match the opening FOREACH command."); return false; |