mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +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
|
@ -5,6 +5,8 @@
|
|||
#include "EquivClass.h"
|
||||
#include "CCL.h"
|
||||
|
||||
namespace zeek::detail {
|
||||
|
||||
EquivClass::EquivClass(int arg_size)
|
||||
{
|
||||
size = arg_size;
|
||||
|
@ -188,3 +190,5 @@ int EquivClass::Size() const
|
|||
{
|
||||
return padded_sizeof(*this) + pad_size(sizeof(int) * size * (ccl_flags ? 5 : 4));
|
||||
}
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue