mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Merge remote-tracking branch 'origin/topic/awelzel/dfa-transition-counter'
* origin/topic/awelzel/dfa-transition-counter: dfa: Remove transition_counter
This commit is contained in:
commit
ded011ef02
4 changed files with 5 additions and 5 deletions
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
|||
5.2.0-dev.418 | 2022-12-08 10:28:01 +0100
|
||||
|
||||
* dfa: Remove transition_counter (Arne Welzel, Corelight)
|
||||
|
||||
5.2.0-dev.414 | 2022-12-06 12:21:44 +0100
|
||||
|
||||
* analyzer/files: handle non-analyzer names in describe_file() (Arne Welzel, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
5.2.0-dev.414
|
||||
5.2.0-dev.418
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
namespace zeek::detail
|
||||
{
|
||||
|
||||
unsigned int DFA_State::transition_counter = 0;
|
||||
|
||||
DFA_State::DFA_State(int arg_state_num, const EquivClass* ec, NFA_state_list* arg_nfa_states,
|
||||
AcceptingSet* arg_accept)
|
||||
{
|
||||
|
|
|
@ -68,8 +68,6 @@ protected:
|
|||
NFA_state_list* nfa_states;
|
||||
EquivClass* meta_ec; // which ec's make same transition
|
||||
DFA_State* mark;
|
||||
|
||||
static unsigned int transition_counter; // see Xtion()
|
||||
};
|
||||
|
||||
using DigestStr = std::basic_string<u_char>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue