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/meta/type_traits.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'absl/meta') diff --git a/absl/meta/type_traits.h b/absl/meta/type_traits.h index 43bed500..01a0155e 100644 --- a/absl/meta/type_traits.h +++ b/absl/meta/type_traits.h @@ -229,14 +229,6 @@ template using remove_cvref_t = typename remove_cvref::type; #endif -namespace type_traits_internal { -// An implementation of std::is_trivially_copyable was once provided for -// internal use within absl. -// TODO(absl-team): Replace absl::type_traits_internal::is_trivially_copyable -// with std::is_trivially_copyable and delete this using declaration. -using std::is_trivially_copyable; -} // namespace type_traits_internal - // ----------------------------------------------------------------------------- // C++14 "_t" trait aliases // ----------------------------------------------------------------------------- -- cgit v1.2.3