File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed
api/include/opentelemetry/nostd/internal/absl/meta Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -106,18 +106,6 @@ struct VoidTImpl {
106106 using type = void ;
107107};
108108
109- // This trick to retrieve a default alignment is necessary for our
110- // implementation of aligned_storage_t to be consistent with any implementation
111- // of std::aligned_storage.
112- template <size_t Len, typename T = std::aligned_storage<Len>>
113- struct default_alignment_of_aligned_storage ;
114-
115- template <size_t Len, size_t Align>
116- struct default_alignment_of_aligned_storage <Len,
117- std::aligned_storage<Len, Align>> {
118- static constexpr size_t value = Align;
119- };
120-
121109// //////////////////////////////
122110// Library Fundamentals V2 TS //
123111// //////////////////////////////
@@ -619,10 +607,6 @@ using remove_extent_t = typename std::remove_extent<T>::type;
619607template <typename T>
620608using remove_all_extents_t = typename std::remove_all_extents<T>::type;
621609
622- template <size_t Len, size_t Align = type_traits_internal::
623- default_alignment_of_aligned_storage<Len>::value>
624- using aligned_storage_t = typename std::aligned_storage<Len, Align>::type;
625-
626610template <typename T>
627611using decay_t = typename std::decay<T>::type;
628612
You can’t perform that action at this time.
0 commit comments