mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
Move regex matching code to zeek namespaces
This commit is contained in:
parent
382812298d
commit
c7dc7fc955
26 changed files with 266 additions and 172 deletions
|
@ -9,6 +9,8 @@
|
|||
|
||||
#include <algorithm>
|
||||
|
||||
namespace zeek::detail {
|
||||
|
||||
static int nfa_state_id = 0;
|
||||
|
||||
NFA_State::NFA_State(int arg_sym, EquivClass* ec)
|
||||
|
@ -369,3 +371,5 @@ bool NFA_state_cmp_neg(const NFA_State* v1, const NFA_State* v2)
|
|||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue