Move regex matching code to zeek namespaces

This commit is contained in:
Tim Wojtulewicz 2020-07-17 15:21:00 -07:00
parent 382812298d
commit c7dc7fc955
26 changed files with 266 additions and 172 deletions

View file

@ -4,7 +4,9 @@
#include <stdio.h>
class CCL;
ZEEK_FORWARD_DECLARE_NAMESPACED(CCL, zeek::detail);
namespace zeek::detail {
class EquivClass {
public:
@ -41,3 +43,5 @@ protected:
int* ccl_flags;
int ec_nil, no_class, no_rep;
};
} // namespace zeek::detail