mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Change int_list in CCL.h to be a vector, fix uses of int_list to match
This commit is contained in:
parent
e25caa2666
commit
a4e2cfa2be
7 changed files with 54 additions and 47 deletions
|
@ -149,7 +149,7 @@ int Specific_RE_Matcher::Compile(int lazy)
|
|||
|
||||
int Specific_RE_Matcher::CompileSet(const string_list& set, const int_list& idx)
|
||||
{
|
||||
if ( set.length() != idx.length() )
|
||||
if ( (size_t)set.length() != idx.size() )
|
||||
reporter->InternalError("compileset: lengths of sets differ");
|
||||
|
||||
rem = this;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue