From cb204d6d9c3f2066580e606bcbe54e3383791d5f Mon Sep 17 00:00:00 2001 From: Derek Mauro Date: Wed, 12 Apr 2023 09:37:39 -0700 Subject: Replace absl::type_traits_internal::is_trivially_copyable with std::is_trivially_copyable PiperOrigin-RevId: 523724345 Change-Id: Id68c79c3bbb253d892bdef4659ac8a926e023d12 --- absl/container/internal/btree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'absl/container') diff --git a/absl/container/internal/btree.h b/absl/container/internal/btree.h index d734676a..cd1569b3 100644 --- a/absl/container/internal/btree.h +++ b/absl/container/internal/btree.h @@ -2180,7 +2180,7 @@ constexpr bool btree

::static_assert_validation() { "Key comparison must be nothrow copy constructible"); static_assert(std::is_nothrow_copy_constructible::value, "Allocator must be nothrow copy constructible"); - static_assert(type_traits_internal::is_trivially_copyable::value, + static_assert(std::is_trivially_copyable::value, "iterator not trivially copyable."); // Note: We assert that kTargetValues, which is computed from -- cgit v1.2.3