diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-01-21 16:22:44 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-01-21 16:22:44 (GMT) |
commit | 35c33d0e2df8646c67125dde4c8b05267388f73c (patch) | |
tree | 50e7e878319cea673907686d524babee6c039104 /Source/cmWhileCommand.cxx | |
parent | a641ad3bba58932279b55bae9e05fb9d5277a0bf (diff) | |
download | CMake-35c33d0e2df8646c67125dde4c8b05267388f73c.zip CMake-35c33d0e2df8646c67125dde4c8b05267388f73c.tar.gz CMake-35c33d0e2df8646c67125dde4c8b05267388f73c.tar.bz2 |
COMP: fix unused var warning
Diffstat (limited to 'Source/cmWhileCommand.cxx')
-rw-r--r-- | Source/cmWhileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmWhileCommand.cxx b/Source/cmWhileCommand.cxx index 8691801..00445e5 100644 --- a/Source/cmWhileCommand.cxx +++ b/Source/cmWhileCommand.cxx @@ -62,7 +62,7 @@ IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile &mf) } bool cmWhileFunctionBlocker:: -ShouldRemove(const cmListFileFunction& lff, cmMakefile& mf) +ShouldRemove(const cmListFileFunction& lff, cmMakefile& ) { if(lff.m_Name == "ENDWHILE") { |