mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:57:35 +00:00
Everywhere: Rename ASSERT => VERIFY
(...and ASSERT_NOT_REACHED => VERIFY_NOT_REACHED) Since all of these checks are done in release builds as well, let's rename them to VERIFY to prevent confusion, as everyone is used to assertions being compiled out in release. We can introduce a new ASSERT macro that is specifically for debug checks, but I'm doing this wholesale conversion first since we've accumulated thousands of these already, and it's not immediately obvious which ones are suitable for ASSERT.
This commit is contained in:
parent
b33a6a443e
commit
5d180d1f99
725 changed files with 3448 additions and 3448 deletions
|
@ -43,7 +43,7 @@ public:
|
|||
|
||||
virtual HandlerType type() const override { return HandlerType::UnhandledInterruptHandler; }
|
||||
virtual const char* purpose() const override { return "Unhandled Interrupt Handler"; }
|
||||
virtual const char* controller() const override { ASSERT_NOT_REACHED(); }
|
||||
virtual const char* controller() const override { VERIFY_NOT_REACHED(); }
|
||||
|
||||
virtual size_t sharing_devices_count() const override { return 0; }
|
||||
virtual bool is_shared_handler() const override { return false; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue