diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-01-22 14:06:59 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-22 14:16:41 (GMT) |
commit | 9073318fc4bf6e71880ed6ad48a2d09d5ec4fb8c (patch) | |
tree | 4c2fd95868d3b147acc5bb0a960fc0ee29071cce /Source/cmMakefile.h | |
parent | 9b05bc4fcc962966f8bddde48f57b21ebb52a4df (diff) | |
download | CMake-9073318fc4bf6e71880ed6ad48a2d09d5ec4fb8c.zip CMake-9073318fc4bf6e71880ed6ad48a2d09d5ec4fb8c.tar.gz CMake-9073318fc4bf6e71880ed6ad48a2d09d5ec4fb8c.tar.bz2 |
cmMakefile: Remove non-const version of method
The const version suffices.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index f788a53..7aee00c 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -250,13 +250,6 @@ public: */ void AddLinkDirectory(const char*); - /** - * Get the list of link directories - */ - std::vector<std::string>& GetLinkDirectories() - { - return this->LinkDirectories; - } const std::vector<std::string>& GetLinkDirectories() const { return this->LinkDirectories; |