mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-18 18:20:35 +03:00
noExplicitConstructor
This commit is contained in:
@@ -151,7 +151,8 @@ void splitRHS(const NGHolder &base, const vector<NFAVertex> &pivots,
|
||||
|
||||
for (auto pivot : pivots) {
|
||||
assert(contains(*rhs_map, pivot));
|
||||
NFAEdge e = add_edge(rhs->start, (*rhs_map)[pivot], *rhs);
|
||||
auto edge_result = add_edge(rhs->start, (*rhs_map)[pivot], *rhs);
|
||||
NFAEdge e = edge_result.first;
|
||||
(*rhs)[e].tops.insert(DEFAULT_TOP);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user