summaryrefslogtreecommitdiff
path: root/absl/meta
diff options
context:
space:
mode:
authorGravatar Derek Mauro <dmauro@google.com>2023-04-12 09:37:39 -0700
committerGravatar Copybara-Service <copybara-worker@google.com>2023-04-12 09:38:31 -0700
commitcb204d6d9c3f2066580e606bcbe54e3383791d5f (patch)
tree2b6d16c4467b7df00c03b2bdf4d0cdd000f179d0 /absl/meta
parent3a46229c3cdd945ccc8bae1458148115ff8f88e7 (diff)
Replace absl::type_traits_internal::is_trivially_copyable with
std::is_trivially_copyable PiperOrigin-RevId: 523724345 Change-Id: Id68c79c3bbb253d892bdef4659ac8a926e023d12
Diffstat (limited to 'absl/meta')
-rw-r--r--absl/meta/type_traits.h8
1 files changed, 0 insertions, 8 deletions
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 <typename T>
using remove_cvref_t = typename remove_cvref<T>::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
// -----------------------------------------------------------------------------