diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmFunctionBlocker.h | 2 | ||||
-rw-r--r-- | Source/cmIfCommand.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFunctionBlocker.h b/Source/cmFunctionBlocker.h index 09b80ca..c9ba96d 100644 --- a/Source/cmFunctionBlocker.h +++ b/Source/cmFunctionBlocker.h @@ -38,7 +38,7 @@ public: * should this function blocker be removed, useful when one function adds a * blocker and another must remove it */ - virtual bool ShouldRemove(const cmListFileFunction& lff, + virtual bool ShouldRemove(const cmListFileFunction&, cmMakefile&) {return false;} /** diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h index 152fcc2..27492a7 100644 --- a/Source/cmIfCommand.h +++ b/Source/cmIfCommand.h @@ -67,7 +67,7 @@ public: * This is called when the command is first encountered in * the CMakeLists.txt file. */ - virtual bool InitialPass(std::vector<std::string> const& args) { return false; } + virtual bool InitialPass(std::vector<std::string> const&) { return false; } /** * The name of the command as specified in CMakeList.txt. |