From 0780976fe72c7d0dd7f9fea71ce9449eeca463a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sat, 13 Mar 2021 17:36:10 +0100 Subject: [PATCH] Remove static assert on struct size, we don't really care that much. Caused problems on 32-bit. --- Core/Debugger/MemBlockInfo.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Core/Debugger/MemBlockInfo.cpp b/Core/Debugger/MemBlockInfo.cpp index 80b40ba1e7..2c5e34c146 100644 --- a/Core/Debugger/MemBlockInfo.cpp +++ b/Core/Debugger/MemBlockInfo.cpp @@ -78,7 +78,6 @@ struct PendingNotifyMem { uint32_t pc; char tag[32]; }; -static_assert(sizeof(PendingNotifyMem) == 64, "..."); static constexpr size_t MAX_PENDING_NOTIFIES = 512; static MemSlabMap allocMap;