Skip to content

Commit 05b2257

Browse files
committed
Fix one more CXX03 alias that I missed.
1 parent 291808e commit 05b2257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__memory/allocator_traits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ struct __void_pointer {
7373
template <class _Ptr, class _Alloc>
7474
struct __void_pointer<_Ptr, _Alloc, false> {
7575
#ifdef _LIBCPP_CXX03_LANG
76-
using type = typename pointer_traits<_Ptr>::template rebind<void>::other;
76+
using type _LIBCPP_NODEBUG = typename pointer_traits<_Ptr>::template rebind<void>::other;
7777
#else
7878
using type _LIBCPP_NODEBUG = typename pointer_traits<_Ptr>::template rebind<void>;
7979
#endif

0 commit comments

Comments
 (0)