diff options
author | Brad King <brad.king@kitware.com> | 2009-07-07 11:44:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-07-07 11:44:12 (GMT) |
commit | a60846718048e33db01e7993ba7d6fa994e0c8b5 (patch) | |
tree | 6bac297b484b07daa28e5c320848a7d0ea0f2e03 /Source/cmComputeLinkInformation.cxx | |
parent | 6ec20cc3f9cddcb7c817a29874bb0fb0c6ab509b (diff) | |
download | CMake-a60846718048e33db01e7993ba7d6fa994e0c8b5.zip CMake-a60846718048e33db01e7993ba7d6fa994e0c8b5.tar.gz CMake-a60846718048e33db01e7993ba7d6fa994e0c8b5.tar.bz2 |
ENH: Simpler cmTarget::GetLinkerLanguage signature
This method previously required the global generator to be passed, but
that was left from before cmTarget had its Makefile member. Now the
global generator can be retrieved automatically, so we can drop the
method argument.
Diffstat (limited to 'Source/cmComputeLinkInformation.cxx')
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index 03b8571..7be0d85 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -264,8 +264,7 @@ cmComputeLinkInformation this->OrderDependentRPath = 0; // Get the language used for linking this target. - this->LinkLanguage = - this->Target->GetLinkerLanguage(this->GlobalGenerator); + this->LinkLanguage = this->Target->GetLinkerLanguage(); if(!this->LinkLanguage) { // The Compute method will do nothing, so skip the rest of the |