diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-12 18:10:45 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-12 21:10:44 (GMT) |
commit | 7bb4e3db069e06fe2eac053e329ffb9f1ea322bf (patch) | |
tree | 2d8977d341d55c97eee7031f9cea2af13786b971 /Source/cmMakefile.h | |
parent | 6241253a4b20e74625b855b1e0d5220c8e7282b1 (diff) | |
download | CMake-7bb4e3db069e06fe2eac053e329ffb9f1ea322bf.zip CMake-7bb4e3db069e06fe2eac053e329ffb9f1ea322bf.tar.gz CMake-7bb4e3db069e06fe2eac053e329ffb9f1ea322bf.tar.bz2 |
cmMakefile: Out-of-line Home directory accessors.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 5209891..823acb1 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -438,15 +438,9 @@ public: * and going up until it reaches the HomeDirectory. */ void SetHomeDirectory(const std::string& dir); - const char* GetHomeDirectory() const - { - return this->cmHomeDirectory.c_str(); - } + const char* GetHomeDirectory() const; void SetHomeOutputDirectory(const std::string& lib); - const char* GetHomeOutputDirectory() const - { - return this->HomeOutputDirectory.c_str(); - } + const char* GetHomeOutputDirectory() const; //@} /** |