]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
revert to push_back()
authorKonstantinos Margaritis <konstantinos@vectorcamp.gr>
Wed, 12 May 2021 10:27:18 +0000 (13:27 +0300)
committerKonstantinos Margaritis <konstantinos@vectorcamp.gr>
Tue, 12 Oct 2021 08:51:33 +0000 (11:51 +0300)
src/nfagraph/ng_literal_analysis.cpp

index ad260a1f4ef42012883c4333f7108a29e6f14ba5..1dbf23a7a14b26269ff56c59f13cc376374df000 100644 (file)
@@ -113,7 +113,7 @@ void dumpGraph(const char *filename, const LitGraph &lg) {
             fout << "[label=\"SINK\"];";
         } else {
             ue2_literal s;
-            s.emplace_back(lg[v].c);
+            s.push_back(lg[v].c);
             fout << "[label=\"" << dumpString(s) << "\"];";
         }
         fout << endl;