mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Fix sign-compare compiler warning in coerce_to_record()
This commit is contained in:
parent
db975ac08e
commit
43d9bda007
1 changed files with 1 additions and 1 deletions
|
@ -3890,7 +3890,7 @@ ValPtr RecordCoerceExpr::Fold(Val* v) const
|
|||
RecordValPtr coerce_to_record(RecordTypePtr rt, Val* v,
|
||||
const std::vector<int>& map)
|
||||
{
|
||||
auto map_size = map.size();
|
||||
int map_size = map.size();
|
||||
auto val = make_intrusive<RecordVal>(rt);
|
||||
RecordType* val_type = val->GetType()->AsRecordType();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue