The remaining nulls

This commit is contained in:
Tim Wojtulewicz 2020-04-02 11:13:07 -07:00
parent 41c3256faa
commit 0a47588d0b
80 changed files with 565 additions and 565 deletions

View file

@ -140,10 +140,10 @@ class RE_Match_State {
public:
explicit RE_Match_State(Specific_RE_Matcher* matcher)
{
dfa = matcher->DFA() ? matcher->DFA() : 0;
dfa = matcher->DFA() ? matcher->DFA() : nullptr;
ecs = matcher->EC()->EquivClasses();
current_pos = -1;
current_state = 0;
current_state = nullptr;
}
const AcceptingMatchSet& AcceptedMatches() const
@ -159,7 +159,7 @@ public:
void Clear()
{
current_pos = -1;
current_state = 0;
current_state = nullptr;
accepted_matches.clear();
}