diff options
author | Ken Martin <ken.martin@kitware.com> | 2004-05-12 15:34:06 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2004-05-12 15:34:06 -0400 |
commit | 5b145fe592f447e8f2f42445e5a2d68a00e1205c (patch) | |
tree | eacd6affbe98b63ff2c98e4598fe3c0ac80eaea9 /Source/cmEndForEachCommand.cxx | |
parent | 79fcc81b6a031cab21e8bd0e3487cdb542aed7ff (diff) | |
download | cmake-5b145fe592f447e8f2f42445e5a2d68a00e1205c.tar.gz |
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 6324d118a2..aa9a333f7d 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; |