diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-16 19:37:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-20 22:15:20 (GMT) |
commit | 932d53bc026bfb18595deafce60c8c8c10a8a139 (patch) | |
tree | e58556ea7479e077c61afea7cdbc498aa546f233 /Source | |
parent | 32b8f03acc0357121ec8f2b96599d5eeaf38c0b4 (diff) | |
download | CMake-932d53bc026bfb18595deafce60c8c8c10a8a139.zip CMake-932d53bc026bfb18595deafce60c8c8c10a8a139.tar.gz CMake-932d53bc026bfb18595deafce60c8c8c10a8a139.tar.bz2 |
cmMakefile: Remove redundant method duplication.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefile.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 3211813..c6090b5 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -464,10 +464,6 @@ public: this->AddDefinition("CMAKE_CURRENT_SOURCE_DIR", this->cmStartDirectory.c_str()); } - const char* GetStartDirectory() const - { - return this->cmStartDirectory.c_str(); - } void SetStartOutputDirectory(const std::string& dir) { this->StartOutputDirectory = dir; @@ -478,10 +474,6 @@ public: this->AddDefinition("CMAKE_CURRENT_BINARY_DIR", this->StartOutputDirectory.c_str()); } - const char* GetStartOutputDirectory() const - { - return this->StartOutputDirectory.c_str(); - } //@} const char* GetCurrentSourceDirectory() const |