summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmCustomCommand.h')
-rw-r--r--Source/cmCustomCommand.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h
index e6d696a..0a87949 100644
--- a/Source/cmCustomCommand.h
+++ b/Source/cmCustomCommand.h
@@ -49,16 +49,11 @@ public:
/** Get the comment string for the command. */
const char* GetComment() const;
- /** set get the used status of the command */
- void Used() { m_Used = true;};
- bool IsUsed() { return m_Used;};
-
private:
std::string m_Output;
std::vector<std::string> m_Depends;
cmCustomCommandLines m_CommandLines;
std::string m_Comment;
- bool m_Used;
};
#endif