Merge pull request #364 from QuantamHD/fix_mising_return

Fixes missing return in cec
This commit is contained in:
alanminko 2025-02-12 08:34:21 +07:00 committed by GitHub
commit c4f8e8e88b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -3468,7 +3468,9 @@ int check_implication( Gia_Man_t * p, int ObjId , int validBit , int fanoutValue
}
assert(0);
// In C++ assert(0) doesn't count as a proper exit.
// needs to return a value to compile.
return -1;
}