From 1519216d086c5bfd9ca0492d1844ef8252eaf798 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Thu, 7 Mar 2024 14:26:01 -0800 Subject: [PATCH] Replace is_pod_v with is_trivial_v --- ConflictSet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConflictSet.cpp b/ConflictSet.cpp index 7d26576..bef8fb9 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -247,7 +247,7 @@ struct Node { static_assert(offsetof(Node, entry) == offsetof(Node, partialKey) + kPartialKeyMaxLenEntryPresent); -static_assert(std::is_pod_v); +static_assert(std::is_trivial_v); struct Child { int64_t childMaxVersion;