diff options
author | Derek Mauro <dmauro@google.com> | 2023-04-12 09:37:39 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-04-12 09:38:31 -0700 |
commit | cb204d6d9c3f2066580e606bcbe54e3383791d5f (patch) | |
tree | 2b6d16c4467b7df00c03b2bdf4d0cdd000f179d0 /absl/container/internal | |
parent | 3a46229c3cdd945ccc8bae1458148115ff8f88e7 (diff) |
Replace absl::type_traits_internal::is_trivially_copyable with
std::is_trivially_copyable
PiperOrigin-RevId: 523724345
Change-Id: Id68c79c3bbb253d892bdef4659ac8a926e023d12
Diffstat (limited to 'absl/container/internal')
-rw-r--r-- | absl/container/internal/btree.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<P>::static_assert_validation() { "Key comparison must be nothrow copy constructible"); static_assert(std::is_nothrow_copy_constructible<allocator_type>::value, "Allocator must be nothrow copy constructible"); - static_assert(type_traits_internal::is_trivially_copyable<iterator>::value, + static_assert(std::is_trivially_copyable<iterator>::value, "iterator not trivially copyable."); // Note: We assert that kTargetValues, which is computed from |