Skip to content

Commit 88a42bd

Browse files
committed
Fix
1 parent 53a529f commit 88a42bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__memory/array_cookie.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ _LIBCPP_HIDE_FROM_ABI _LIBCPP_NO_SANITIZE("address") size_t __get_array_cookie([
100100
__has_array_cookie<_Tp>::value, "Trying to access the array cookie of a type that is not guaranteed to have one");
101101

102102
#if defined(_LIBCPP_ABI_ITANIUM)
103-
using _ArrayCookie = __itanium_array_cookie<_Tp>;
103+
using _ArrayCookie = __itanium_array_cookie;
104104
#elif defined(_LIBCPP_ABI_ITANIUM_WITH_ARM_DIFFERENCES)
105105
using _ArrayCookie = __arm_array_cookie<_Tp>;
106106
#else

0 commit comments

Comments
 (0)