summaryrefslogtreecommitdiffstats
path: root/Source/cmVariableWatchCommand.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-01-06 22:13:44 (GMT)
committerRegina Pfeifer <regina@mailbox.org>2019-07-18 15:35:43 (GMT)
commitfbee46e262044ac71170552adc4eb656ef0b030b (patch)
treef985f370b4128f9af895db4e3995e6c2e166bb87 /Source/cmVariableWatchCommand.h
parent360d4155920b851f114843e91234bb0ae33afef3 (diff)
downloadCMake-fbee46e262044ac71170552adc4eb656ef0b030b.zip
CMake-fbee46e262044ac71170552adc4eb656ef0b030b.tar.gz
CMake-fbee46e262044ac71170552adc4eb656ef0b030b.tar.bz2
cmVariableWatchCommand: Port away from FinalPass
Diffstat (limited to 'Source/cmVariableWatchCommand.h')
-rw-r--r--Source/cmVariableWatchCommand.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/cmVariableWatchCommand.h b/Source/cmVariableWatchCommand.h
index 0dbb0cb..221269f 100644
--- a/Source/cmVariableWatchCommand.h
+++ b/Source/cmVariableWatchCommand.h
@@ -5,7 +5,6 @@
#include "cmConfigure.h" // IWYU pragma: keep
-#include <set>
#include <string>
#include <vector>
@@ -30,25 +29,12 @@ public:
return cm::make_unique<cmVariableWatchCommand>();
}
- //! Default constructor
- cmVariableWatchCommand();
-
- //! Destructor.
- ~cmVariableWatchCommand() override;
-
/**
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) override;
-
- /** This command does not really have a final pass but it needs to
- stay alive since it owns variable watch callback information. */
- bool HasFinalPass() const override { return true; }
-
-protected:
- std::set<std::string> WatchedVariables;
};
#endif