[libcxx-commits] [libcxx] [libc++] Put _LIBCPP_NODEBUG on allocator trait aliases. (PR #118835)
via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Dec 5 10:29:52 PST 2024
================
@@ -88,18 +88,18 @@ struct __const_void_pointer {
template <class _Ptr, class _Alloc>
struct __const_void_pointer<_Ptr, _Alloc, false> {
#ifdef _LIBCPP_CXX03_LANG
- using type _LIBCPP_NODEBUG = typename pointer_traits<_Ptr>::template rebind<const void>::other;
+ using type = typename pointer_traits<_Ptr>::template rebind<const void>::other;
----------------
cmtice wrote:
Same reason
https://github.com/llvm/llvm-project/pull/118835
More information about the libcxx-commits
mailing list