mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-18 10:10:35 +03:00
replace push_back by emplace_back where possible
This commit is contained in:
@@ -326,7 +326,7 @@ void assignGroupsToLiterals(RoseBuildImpl &build) {
|
||||
/* long literals will either be stuck in a mega group or spread around
|
||||
* depending on availability */
|
||||
if (superStrong(lit)) {
|
||||
long_lits.push_back(id);
|
||||
long_lits.emplace_back(id);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user