AK: Add RELEASE_ASSERT in non-Serenity builds.

This commit is contained in:
Andreas Kling 2019-07-26 22:15:54 +02:00
parent d7ff2c5b86
commit 2f373a27a2
Notes: sideshowbarker 2024-07-19 13:02:47 +09:00

View File

@ -7,6 +7,7 @@
# ifndef __serenity__
# define ASSERT assert
# define ASSERT_NOT_REACHED() assert(false)
# define RELEASE_ASSERT assert
# endif
#endif