diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-01-06 22:16:18 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-07-18 15:35:43 (GMT) |
commit | 732dd344b974d880402b0cb047de328eca1df666 (patch) | |
tree | 717e4d48e12d7262de96c62a7409edab8aed7df8 /Source/cmCommand.h | |
parent | fbee46e262044ac71170552adc4eb656ef0b030b (diff) | |
download | CMake-732dd344b974d880402b0cb047de328eca1df666.zip CMake-732dd344b974d880402b0cb047de328eca1df666.tar.gz CMake-732dd344b974d880402b0cb047de328eca1df666.tar.bz2 |
cmCommand: remove FinalPass from interface
Diffstat (limited to 'Source/cmCommand.h')
-rw-r--r-- | Source/cmCommand.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmCommand.h b/Source/cmCommand.h index cdd2aba..b210f27 100644 --- a/Source/cmCommand.h +++ b/Source/cmCommand.h @@ -61,19 +61,6 @@ public: cmExecutionStatus&) = 0; /** - * This is called at the end after all the information - * specified by the command is accumulated. Most commands do - * not implement this method. At this point, reading and - * writing to the cache can be done. - */ - virtual void FinalPass() {} - - /** - * Does this command have a final pass? Query after InitialPass. - */ - virtual bool HasFinalPass() const { return false; } - - /** * This is a virtual constructor for the command. */ virtual std::unique_ptr<cmCommand> Clone() = 0; |