mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00
Fix debug build due to old int_list usage within assert
This commit is contained in:
parent
e51f02737b
commit
7ccf3c0a69
1 changed files with 1 additions and 1 deletions
|
@ -395,7 +395,7 @@ void RuleMatcher::BuildRegEx(RuleHdrTest* hdr_test, string_list* exprs,
|
||||||
void RuleMatcher::BuildPatternSets(RuleHdrTest::pattern_set_list* dst,
|
void RuleMatcher::BuildPatternSets(RuleHdrTest::pattern_set_list* dst,
|
||||||
const string_list& exprs, const int_list& ids)
|
const string_list& exprs, const int_list& ids)
|
||||||
{
|
{
|
||||||
assert(exprs.length() == ids.length());
|
assert(static_cast<size_t>(exprs.length()) == ids.size());
|
||||||
|
|
||||||
// We build groups of at most sig_max_group_size regexps.
|
// We build groups of at most sig_max_group_size regexps.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue