mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-19 02:30:35 +03:00
replace push_back by emplace_back where possible
This commit is contained in:
@@ -256,7 +256,7 @@ void removeRegionRedundancy(NGHolder &g, som_type som) {
|
||||
}
|
||||
u32 region = region_map.at(v);
|
||||
if (contains(deadRegions, region)) {
|
||||
dead.push_back(v);
|
||||
dead.emplace_back(v);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user