summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-01-22 14:06:59 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-01-22 14:16:41 (GMT)
commit9073318fc4bf6e71880ed6ad48a2d09d5ec4fb8c (patch)
tree4c2fd95868d3b147acc5bb0a960fc0ee29071cce
parent9b05bc4fcc962966f8bddde48f57b21ebb52a4df (diff)
downloadCMake-9073318fc4bf6e71880ed6ad48a2d09d5ec4fb8c.zip
CMake-9073318fc4bf6e71880ed6ad48a2d09d5ec4fb8c.tar.gz
CMake-9073318fc4bf6e71880ed6ad48a2d09d5ec4fb8c.tar.bz2
cmMakefile: Remove non-const version of method
The const version suffices.
-rw-r--r--Source/cmMakefile.h7
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;