From 28a496324223fa4f482efec737bc4aa66867177b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 18 Jun 2019 08:52:21 +0200 Subject: [PATCH] AK: Make ASSERT_NOT_REACHED() work nicely in host builds. --- AK/Assertions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Assertions.h b/AK/Assertions.h index 35c92442b2..d1713b9155 100644 --- a/AK/Assertions.h +++ b/AK/Assertions.h @@ -6,7 +6,7 @@ # include # ifndef __serenity__ # define ASSERT assert -# define ASSERT_NOT_REACHED assert(false) +# define ASSERT_NOT_REACHED() assert(false) # endif #endif