File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1012,7 +1012,7 @@ private:
1012
1012
_LIBCPP_HIDE_FROM_ABI void __annotate_delete () const _NOEXCEPT {
1013
1013
#ifndef _LIBCPP_HAS_NO_ASAN
1014
1014
// The default allocator does not require unpoisoning before returning memory.
1015
- if _LIBCPP_CONSTEXPR (is_same<allocator_type, allocator<_Tp>>::value)
1015
+ if _LIBCPP_CONSTEXPR (is_same<allocator_type, allocator<_Tp> >::value)
1016
1016
return ;
1017
1017
if (empty ()) {
1018
1018
for (size_t __i = 0 ; __i < __map_.size (); ++__i) {
Original file line number Diff line number Diff line change @@ -1913,7 +1913,7 @@ private:
1913
1913
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __annotate_delete () const _NOEXCEPT {
1914
1914
#if !defined(_LIBCPP_HAS_NO_ASAN) && defined(_LIBCPP_INSTRUMENTED_WITH_ASAN)
1915
1915
// The default allocator does not require unpoisoning before returning memory.
1916
- if _LIBCPP_CONSTEXPR (!is_same<allocator_type, allocator<__default_allocator_type>>::value)
1916
+ if _LIBCPP_CONSTEXPR (!is_same<allocator_type, allocator<__default_allocator_type> >::value)
1917
1917
if (!__libcpp_is_constant_evaluated () && (__asan_short_string_is_annotated () || __is_long ()))
1918
1918
__annotate_contiguous_container (data () + size () + 1 , data () + capacity () + 1 );
1919
1919
#endif
You can’t perform that action at this time.
0 commit comments