diff options
author | Brad King <brad.king@kitware.com> | 2014-06-12 20:15:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-23 13:14:45 (GMT) |
commit | bd9b667bbe83b112a9ea4448605fac980d2d8a68 (patch) | |
tree | bdb19e46c5e54001516474229a888bad8477ac74 /Source/cmComputeLinkInformation.h | |
parent | 06328dd58ee3de5d716b0d2b259927da2e173c1d (diff) | |
download | CMake-bd9b667bbe83b112a9ea4448605fac980d2d8a68.zip CMake-bd9b667bbe83b112a9ea4448605fac980d2d8a68.tar.gz CMake-bd9b667bbe83b112a9ea4448605fac980d2d8a68.tar.bz2 |
cmComputeLinkInformation: Remove 'head' argument
It is only ever constructed with the current target as its own 'head'.
Co-Author: Stephen Kelly <steveire@gmail.com>
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index e345fe2..e5d674a 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -29,8 +29,7 @@ class cmOrderDirectories; class cmComputeLinkInformation { public: - cmComputeLinkInformation(cmTarget const* target, const std::string& config, - cmTarget const* headTarget); + cmComputeLinkInformation(cmTarget const* target, const std::string& config); ~cmComputeLinkInformation(); bool Compute(); @@ -75,7 +74,6 @@ private: // Context information. cmTarget const* Target; - cmTarget const* HeadTarget; cmMakefile* Makefile; cmLocalGenerator* LocalGenerator; cmGlobalGenerator* GlobalGenerator; |