diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
commit | 49116032d905455a7b1c994e4a696afc885c1e71 (patch) | |
tree | be835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/hyperscan/src/nfagraph/ng_equivalence.cpp | |
parent | 4e839db24a3bbc9f1c610c43d6faaaa99824dcca (diff) | |
download | ydb-49116032d905455a7b1c994e4a696afc885c1e71.tar.gz |
Restoring authorship annotation for <thegeorg@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/hyperscan/src/nfagraph/ng_equivalence.cpp')
-rw-r--r-- | contrib/libs/hyperscan/src/nfagraph/ng_equivalence.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libs/hyperscan/src/nfagraph/ng_equivalence.cpp b/contrib/libs/hyperscan/src/nfagraph/ng_equivalence.cpp index 1d482b5145..fba8ce7b74 100644 --- a/contrib/libs/hyperscan/src/nfagraph/ng_equivalence.cpp +++ b/contrib/libs/hyperscan/src/nfagraph/ng_equivalence.cpp @@ -269,7 +269,7 @@ vector<unique_ptr<VertexInfo>> getVertexInfos(const NGHolder &g) { vertex_map.resize(num_verts); for (auto v : vertices_range(g)) { - infos.push_back(std::make_unique<VertexInfo>(v, g)); + infos.push_back(std::make_unique<VertexInfo>(v, g)); vertex_map[g[v].index] = infos.back().get(); } @@ -516,7 +516,7 @@ void mergeClass(vector<unique_ptr<VertexInfo>> &infos, NGHolder &g, g[new_v].reports.clear(); /* populated as we pull in succs */ // store this vertex in our global vertex list - infos.push_back(std::make_unique<VertexInfo>(new_v, g)); + infos.push_back(std::make_unique<VertexInfo>(new_v, g)); VertexInfo *new_vertex_info = infos.back().get(); NFAVertex new_v_eod = NGHolder::null_vertex(); @@ -525,7 +525,7 @@ void mergeClass(vector<unique_ptr<VertexInfo>> &infos, NGHolder &g, if (require_separate_eod_vertex(cur_class_vertices, g)) { new_v_eod = clone_vertex(g, old_v); g[new_v_eod].reports.clear(); - infos.push_back(std::make_unique<VertexInfo>(new_v_eod, g)); + infos.push_back(std::make_unique<VertexInfo>(new_v_eod, g)); new_vertex_info_eod = infos.back().get(); } |