diff options
author | Brad King <brad.king@kitware.com> | 2002-06-18 21:20:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-06-18 21:20:27 (GMT) |
commit | 28895b0f9f83d52f7a4e412888f93f0dd1920f76 (patch) | |
tree | 3ecfd16930f5b282d7837e93c0a71ce42a3cca1c /Source/cmFunctionBlocker.h | |
parent | 55f3a3817e2879ad988df4473490823f803025d6 (diff) | |
download | CMake-28895b0f9f83d52f7a4e412888f93f0dd1920f76.zip CMake-28895b0f9f83d52f7a4e412888f93f0dd1920f76.tar.gz CMake-28895b0f9f83d52f7a4e412888f93f0dd1920f76.tar.bz2 |
ERR: Fixed compiler warnings.
Diffstat (limited to 'Source/cmFunctionBlocker.h')
-rw-r--r-- | Source/cmFunctionBlocker.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmFunctionBlocker.h b/Source/cmFunctionBlocker.h index ab6f09d..3285a16 100644 --- a/Source/cmFunctionBlocker.h +++ b/Source/cmFunctionBlocker.h @@ -32,22 +32,22 @@ public: * should a function be blocked */ virtual bool IsFunctionBlocked(const char *name, const std::vector<std::string> &args, - cmMakefile &mf) = 0; + cmMakefile&mf) = 0; /** * should this function blocker be removed, useful when one function adds a * blocker and another must remove it */ - virtual bool ShouldRemove(const char *name, - const std::vector<std::string> &args, - cmMakefile &mf) {return false;} + virtual bool ShouldRemove(const char *, + const std::vector<std::string>&, + cmMakefile&) {return false;} /** * When the end of a CMakeList file is reached this method is called. It * is not called on the end of an INCLUDE cmake file, just at the end of a * regular CMakeList file */ - virtual void ScopeEnded(cmMakefile &mf) {} + virtual void ScopeEnded(cmMakefile&) {} virtual ~cmFunctionBlocker() {} |