diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-05-10 20:48:31 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-05-11 17:49:06 (GMT) |
commit | a1218f59d9164407c6e28f816b0f11314b64fe5c (patch) | |
tree | b4612dc57aaee2b0d74a85047853955f04dc0f35 /Source/cmMacroCommand.cxx | |
parent | 4ba25a823e62271a74dfd1845f535400e2da125b (diff) | |
download | CMake-a1218f59d9164407c6e28f816b0f11314b64fe5c.zip CMake-a1218f59d9164407c6e28f816b0f11314b64fe5c.tar.gz CMake-a1218f59d9164407c6e28f816b0f11314b64fe5c.tar.bz2 |
cmCommand: remove unused methods from interface and all implementations
Diffstat (limited to 'Source/cmMacroCommand.cxx')
-rw-r--r-- | Source/cmMacroCommand.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmMacroCommand.cxx b/Source/cmMacroCommand.cxx index f386a22..a6a9ea3 100644 --- a/Source/cmMacroCommand.cxx +++ b/Source/cmMacroCommand.cxx @@ -22,11 +22,6 @@ public: ~cmMacroHelperCommand() CM_OVERRIDE {} /** - * This determines if the command is defined in a cmake script. - */ - bool IsUserDefined() const CM_OVERRIDE { return true; } - - /** * This is a virtual constructor for the command. */ cmCommand* Clone() CM_OVERRIDE @@ -53,11 +48,6 @@ public: return false; } - /** - * The name of the command as specified in CMakeList.txt. - */ - std::string GetName() const CM_OVERRIDE { return this->Args[0]; } - std::vector<std::string> Args; std::vector<cmListFileFunction> Functions; cmPolicies::PolicyMap Policies; |