3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-02 23:28:00 +00:00

Fix missing return in NDEBUG case

Signed-off-by: Drew Lewis <cannada@google.com>
This commit is contained in:
Drew Lewis 2026-03-13 19:51:49 +00:00
parent 4716f4410f
commit 4251cd69ed

View file

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