From 95052ef879cef0d8cee4756dfddecf3c881eff59 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sat, 30 Nov 2024 16:29:40 +0200 Subject: [PATCH] Comment out asserts on Linux/Mac/Android --- third_party/host_memory/host_memory.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/third_party/host_memory/host_memory.cpp b/third_party/host_memory/host_memory.cpp index e1fe84b6..880ea9d7 100644 --- a/third_party/host_memory/host_memory.cpp +++ b/third_party/host_memory/host_memory.cpp @@ -11,9 +11,6 @@ #include "host_memory/dynamic_library.h" -#define ASSERT -#define UNIMPLEMENTED_MSG - #if defined(_M_ARM64) || defined(__aarch64__) #define ARCHITECTURE_arm64 #endif @@ -47,6 +44,9 @@ #include #include +#define ASSERT +#define UNIMPLEMENTED_MSG + namespace Common { constexpr size_t PageAlignment = 0x1000;