Skip to content

Commit

Permalink
fn
Browse files Browse the repository at this point in the history
  • Loading branch information
kilohsakul committed Sep 28, 2023
1 parent 44b2fd7 commit 81f3b67
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/nfa/nfa.cc
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,7 @@ namespace {
TarjanNodeData() = default;

TarjanNodeData(State q, const Delta & delta, unsigned long index)
: current_move(delta[q].moves().begin()), end_move(delta[q].moves().end()), index(index), lowlink(index), initilized(true), on_stack(true) {
};
: current_move(delta[q].moves().begin()), end_move(delta[q].moves().end()), index(index), lowlink(index), initilized(true), on_stack(true) {};
};
};

Expand Down

0 comments on commit 81f3b67

Please sign in to comment.