summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-02-16 18:15:44 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2017-02-16 18:15:44 (GMT)
commit60b5616af7966076ffce43610559d8a0bf7a9550 (patch)
tree6a36ed3d825a1768948f8bfc45e1b5512a166fb3 /Source
parentaa18d5befec57e69628106cc5d95829a687bfd5c (diff)
parent20ae76b1da82d87792fb54335dbf95e871261f52 (diff)
downloadCMake-60b5616af7966076ffce43610559d8a0bf7a9550.zip
CMake-60b5616af7966076ffce43610559d8a0bf7a9550.tar.gz
CMake-60b5616af7966076ffce43610559d8a0bf7a9550.tar.bz2
Merge topic 'command-cleanup-fix'
20ae76b1 cmDisallowedCommand: Forward final pass too
Diffstat (limited to 'Source')
-rw-r--r--Source/cmDisallowedCommand.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmDisallowedCommand.h b/Source/cmDisallowedCommand.h
index 9cf5e6f..00b0183 100644
--- a/Source/cmDisallowedCommand.h
+++ b/Source/cmDisallowedCommand.h
@@ -34,6 +34,13 @@ public:
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) CM_OVERRIDE;
+ void FinalPass() CM_OVERRIDE { this->Command->FinalPass(); }
+
+ bool HasFinalPass() const CM_OVERRIDE
+ {
+ return this->Command->HasFinalPass();
+ }
+
bool IsScriptable() const CM_OVERRIDE
{
return this->Command->IsScriptable();