Merge pull request #5750 from calewis/return_things

Fix missing return in NDEBUG case
This commit is contained in:
KrystalDelusion 2026-03-13 22:07:28 +00:00 committed by GitHub
commit 1111a401f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -178,8 +178,8 @@ struct ModIndex : public RTLIL::Monitor
return false;
}
return true;
#endif
return true;
}
void check()