mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 11:38:20 +00:00
logic fix
This commit is contained in:
parent
5bd4da72f9
commit
b196d377cf
1 changed files with 2 additions and 2 deletions
|
@ -1030,8 +1030,8 @@ bool CSE_ValidityChecker::CheckRecordConstructor(const TypePtr& t) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CSE_ValidityChecker::CheckTableMod(const TypePtr& t) {
|
bool CSE_ValidityChecker::CheckTableMod(const TypePtr& t) {
|
||||||
if ( ! CheckAggrMod(t) )
|
if ( CheckAggrMod(t) )
|
||||||
return false;
|
return true;
|
||||||
|
|
||||||
if ( t->Tag() != TYPE_TABLE )
|
if ( t->Tag() != TYPE_TABLE )
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue