mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
The remaining nulls
This commit is contained in:
parent
41c3256faa
commit
0a47588d0b
80 changed files with 565 additions and 565 deletions
6
src/RE.h
6
src/RE.h
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue