diff options
Diffstat (limited to 'Source/cmCustomCommand.h')
-rw-r--r-- | Source/cmCustomCommand.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h index f7c6b5e..17b4c0d 100644 --- a/Source/cmCustomCommand.h +++ b/Source/cmCustomCommand.h @@ -68,10 +68,6 @@ public: bool GetEscapeAllowMakeVars() const; void SetEscapeAllowMakeVars(bool b); - /** set get the used status of the command */ - void SetUsed() { this->Used = true;} - bool IsUsed() const { return this->Used;} - private: std::vector<std::string> Outputs; std::vector<std::string> Depends; @@ -81,7 +77,6 @@ private: std::string WorkingDirectory; bool EscapeAllowMakeVars; bool EscapeOldStyle; - bool Used; }; #endif |