We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 291808e commit 05b2257Copy full SHA for 05b2257
libcxx/include/__memory/allocator_traits.h
@@ -73,7 +73,7 @@ struct __void_pointer {
73
template <class _Ptr, class _Alloc>
74
struct __void_pointer<_Ptr, _Alloc, false> {
75
#ifdef _LIBCPP_CXX03_LANG
76
- using type = typename pointer_traits<_Ptr>::template rebind<void>::other;
+ using type _LIBCPP_NODEBUG = typename pointer_traits<_Ptr>::template rebind<void>::other;
77
#else
78
using type _LIBCPP_NODEBUG = typename pointer_traits<_Ptr>::template rebind<void>;
79
#endif
0 commit comments