mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 14:50:10 -06:00
Makefile: Remove redundant push_back
This commit is contained in:
@@ -1926,8 +1926,7 @@ void cmMakefileTargetGenerator::WriteTargetDriverRule(
|
||||
this->LocalGenerator->MaybeRelativeToTopBinDir(buildTargetRuleName);
|
||||
|
||||
// Build the list of target outputs to drive.
|
||||
std::vector<std::string> depends;
|
||||
depends.push_back(main_output);
|
||||
std::vector<std::string> depends{ main_output };
|
||||
|
||||
const char* comment = nullptr;
|
||||
if (relink) {
|
||||
|
||||
Reference in New Issue
Block a user