diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-07 18:13:34 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-07 18:13:34 (GMT) |
commit | c8ec8d6a7ec6c176bc14e7026dc755a9be8689cb (patch) | |
tree | 3ef2de8dd4725079a1fd6afc5a0b9b6afc9f53c1 /Source/cmLinkLibrariesCommand.cxx | |
parent | 3e8d47d18b4db6b4621ee5e4864dde234ad8a282 (diff) | |
download | CMake-c8ec8d6a7ec6c176bc14e7026dc755a9be8689cb.zip CMake-c8ec8d6a7ec6c176bc14e7026dc755a9be8689cb.tar.gz CMake-c8ec8d6a7ec6c176bc14e7026dc755a9be8689cb.tar.bz2 |
cmMakefile: Remove superfluous overload
Explicit is better than implicit.
Diffstat (limited to 'Source/cmLinkLibrariesCommand.cxx')
-rw-r--r-- | Source/cmLinkLibrariesCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLinkLibrariesCommand.cxx b/Source/cmLinkLibrariesCommand.cxx index bb0e27b..3fc7bd9 100644 --- a/Source/cmLinkLibrariesCommand.cxx +++ b/Source/cmLinkLibrariesCommand.cxx @@ -30,7 +30,7 @@ bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& args, } this->Makefile->AddLinkLibrary(*i, OPTIMIZED_LibraryType); } else { - this->Makefile->AddLinkLibrary(*i); + this->Makefile->AddLinkLibrary(*i, GENERAL_LibraryType); } } |