replace push_back by emplace_back where possible

This commit is contained in:
Konstantinos Margaritis
2021-03-26 12:39:40 +02:00
parent 1cdb7312cb
commit 3f35a2be37
92 changed files with 535 additions and 535 deletions

View File

@@ -178,7 +178,7 @@ void findSeeds(const NGHolder &h, const bool som, vector<NFAVertex> *seeds) {
}
DEBUG_PRINTF("%zu is a seed\n", h[v].index);
seeds->push_back(v);
seeds->emplace_back(v);
already_seeds.insert(v);
}
}