Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-05 | AK: Always define ak_assertion_failed, even when NDEBUG is false | Andrew Kaster | |
Just because we may compile serenity with or without NDEBUG doesn't mean that consuming projects or Ports will share the setting. Always define the custom assertion function so that we don't have to keep the same debug settings between all projects. | |||
2022-10-06 | AK: Print VERIFY() error messages in release builds | Andreas Kling | |
Until now, VERIFY() failures would just cause a __builtin_trap() in release builds, which made them a bit too harsh. This commit adds an out-of-line helper function that prints the error before trapping. |