Remove static assert on struct size, we don't really care that much.

Caused problems on 32-bit.
This commit is contained in:
Henrik Rydgård 2021-03-13 17:36:10 +01:00
parent 3c211a6b99
commit 0780976fe7

View file

@ -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;