diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-07 18:13:36 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-07 18:13:36 (GMT) |
commit | d9b5f0a301c23c2c0e56ad3fcb696de71c3d6365 (patch) | |
tree | ae661ec00676dba7937b2b2b279036f3b27e50fd /Source/cmTarget.h | |
parent | 1c70c6cc09f0f8be087db2aeae5ee6a3f1b47bda (diff) | |
download | CMake-d9b5f0a301c23c2c0e56ad3fcb696de71c3d6365.zip CMake-d9b5f0a301c23c2c0e56ad3fcb696de71c3d6365.tar.gz CMake-d9b5f0a301c23c2c0e56ad3fcb696de71c3d6365.tar.bz2 |
cmTarget: Remove target name from parameter list
Use the member state instead.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 8fbb42f..3d88688 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -142,8 +142,8 @@ public: */ void ClearDependencyInformation(cmMakefile& mf, const std::string& target); - void AddLinkLibrary(cmMakefile& mf, const std::string& target, - const std::string& lib, cmTargetLinkLibraryType llt); + void AddLinkLibrary(cmMakefile& mf, const std::string& lib, + cmTargetLinkLibraryType llt); enum TLLSignature { KeywordTLLSignature, |