From 186057bf9287c9e3ebdba992800dd0fc6c76e2e8 Mon Sep 17 00:00:00 2001 From: Dennis Camera Date: Thu, 4 Jul 2024 20:24:56 +0200 Subject: [PATCH] AK: Add TODO_PPC* assertions --- AK/Assertions.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AK/Assertions.h b/AK/Assertions.h index 200e47cbd1..ba28c914b5 100644 --- a/AK/Assertions.h +++ b/AK/Assertions.h @@ -18,3 +18,5 @@ static constexpr bool TODO = false; #define TODO() VERIFY(TODO) /* NOLINT(cert-dcl03-c,misc-static-assert) No, this can't be static_assert, it's a runtime check */ #define TODO_AARCH64() VERIFY(TODO) /* NOLINT(cert-dcl03-c,misc-static-assert) No, this can't be static_assert, it's a runtime check */ #define TODO_RISCV64() VERIFY(TODO) /* NOLINT(cert-dcl03-c,misc-static-assert) No, this can't be static_assert, it's a runtime check */ +#define TODO_PPC64() VERIFY(TODO) /* NOLINT(cert-dcl03-c,misc-static-assert) No, this can't be static_assert, it's a runtime check */ +#define TODO_PPC() VERIFY(TODO) /* NOLINT(cert-dcl03-c,misc-static-assert) No, this can't be static_assert, it's a runtime check */