mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28: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
|
@ -8,6 +8,8 @@
|
|||
#include "RE.h"
|
||||
#include "DFA.h"
|
||||
|
||||
namespace zeek::detail {
|
||||
|
||||
CCL::CCL()
|
||||
{
|
||||
syms = new int_list;
|
||||
|
@ -48,3 +50,5 @@ unsigned int CCL::MemoryAllocation() const
|
|||
{
|
||||
return padded_sizeof(*this) + padded_sizeof(*syms) + pad_size(syms->size() * sizeof(int_list::value_type));
|
||||
}
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue