mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 20:18:20 +00:00
Replace uses of the old Dict generation code with new template versions
This commit is contained in:
parent
e2feec52be
commit
50943a580c
26 changed files with 62 additions and 94 deletions
7
src/RE.h
7
src/RE.h
|
@ -22,9 +22,6 @@ class Specific_RE_Matcher;
|
|||
class RE_Matcher;
|
||||
class DFA_State;
|
||||
|
||||
declare(PDict,char);
|
||||
declare(PDict,CCL);
|
||||
|
||||
extern int case_insensitive;
|
||||
extern CCL* curr_ccl;
|
||||
extern NFA_Machine* nfa;
|
||||
|
@ -122,8 +119,8 @@ protected:
|
|||
int multiline;
|
||||
char* pattern_text;
|
||||
|
||||
PDict(char) defs;
|
||||
PDict(CCL) ccl_dict;
|
||||
PDict<char> defs;
|
||||
PDict<CCL> ccl_dict;
|
||||
PList<CCL> ccl_list;
|
||||
EquivClass equiv_class;
|
||||
int* ecs;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue