File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
libcxx/include/__type_traits Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
#include < __config>
13
13
#include < __type_traits/integral_constant.h>
14
- #include < __type_traits/remove_all_extents.h>
15
- #include < __type_traits/remove_cv.h>
16
14
17
15
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
18
16
# pragma GCC system_header
@@ -24,7 +22,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
24
22
25
23
template <class _Tp >
26
24
struct _LIBCPP_TEMPLATE_VIS has_unique_object_representations
27
- : public integral_constant<bool , __has_unique_object_representations(remove_cv_t < remove_all_extents_t < _Tp>> )> {};
25
+ : public integral_constant<bool , __has_unique_object_representations(_Tp)> {};
28
26
29
27
template <class _Tp >
30
28
inline constexpr bool has_unique_object_representations_v = has_unique_object_representations<_Tp>::value;
You can’t perform that action at this time.
0 commit comments