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