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:
Arne Welzel 2022-12-08 10:28:01 +01:00
commit ded011ef02
4 changed files with 5 additions and 5 deletions

View file

@ -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)

View file

@ -1 +1 @@
5.2.0-dev.414
5.2.0-dev.418

View file

@ -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)
{

View file

@ -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>;