diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-07 18:13:33 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-07 18:13:33 (GMT) |
commit | 3e8d47d18b4db6b4621ee5e4864dde234ad8a282 (patch) | |
tree | 42f4b9435cf32ae42be09c8d3e710af23f426dff /Source/cmMakefile.h | |
parent | 3b4895fa35e4a96022abd99b07002a7d2ab3a968 (diff) | |
download | CMake-3e8d47d18b4db6b4621ee5e4864dde234ad8a282.zip CMake-3e8d47d18b4db6b4621ee5e4864dde234ad8a282.tar.gz CMake-3e8d47d18b4db6b4621ee5e4864dde234ad8a282.tar.bz2 |
cmMakefile: Remove useless link directory container
It is never populated - a find will never find anything.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 40344ce..92907cd 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -805,9 +805,6 @@ protected: // Tests std::map<std::string, cmTest*> Tests; - // The link-library paths. Order matters, use std::vector (not std::set). - std::vector<std::string> LinkDirectories; - // The set of include directories that are marked as system include // directories. std::set<std::string> SystemIncludeDirectories; |