From c15c2e7b444018b09a0b6601719017c0026e78e8 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Wed, 27 Mar 2024 12:41:45 -0700 Subject: [PATCH] Remove redundant static assert Closes #14 --- ConflictSet.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ConflictSet.cpp b/ConflictSet.cpp index f7b9b9e..e91dd91 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -558,7 +558,6 @@ template struct BoundedFreeListAllocator { } void release(T *p) { - static_assert(std::is_trivially_destructible_v); if (freeListBytes >= kFreeListMaxMemory) { removeNode(p); return safe_free(p, sizeof(T) + p->partialKeyCapacity);