clang-tidy: Use emplace

This commit is contained in:
Regina Pfeifer
2019-01-16 07:13:07 +01:00
committed by Brad King
parent 2e5307a2a4
commit ef61997b1b
57 changed files with 266 additions and 266 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ bool cmForEachCommand::InitialPass(std::vector<std::string> const& args,
break;
}
sprintf(buffer, "%d", cc);
range.push_back(buffer);
range.emplace_back(buffer);
if (cc == stop) {
break;
}