mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-18 18:20:35 +03:00
replace push_back by emplace_back where possible
This commit is contained in:
@@ -182,7 +182,7 @@ bool shuftiBuildDoubleMasks(const CharReach &onechar,
|
||||
}
|
||||
nibble_masks.clear();
|
||||
for (const auto &e : new_masks) {
|
||||
nibble_masks.push_back(e.second);
|
||||
nibble_masks.emplace_back(e.second);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user