diff --git a/AK/Assertions.h b/AK/Assertions.h index cb28d8f7f4..55e7c989da 100644 --- a/AK/Assertions.h +++ b/AK/Assertions.h @@ -13,5 +13,5 @@ # define VERIFY assert # define VERIFY_NOT_REACHED() assert(false) /* NOLINT(cert-dcl03-c,misc-static-assert) No, this can't be static_assert, it's a runtime check */ static constexpr bool TODO = false; -# define TODO() VERIFY(TODO) +# define TODO() VERIFY(TODO) /* NOLINT(cert-dcl03-c,misc-static-assert) No, this can't be static_assert, it's a runtime check */ #endif