Skip to content

Commit 188cb11

Browse files
committed
Change ">>" to "> >" in templates in allocator_traits.h
1 parent 6a9ab4d commit 188cb11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/__memory/allocator_traits.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ template <class _Tp>
4747
using __pointer_member _LIBCPP_NODEBUG = typename _Tp::pointer;
4848

4949
template <class _Tp, class _Alloc>
50-
using __pointer _LIBCPP_NODEBUG = __detected_or_t<_Tp *, __pointer_member, __libcpp_remove_reference_t<_Alloc>>;
50+
using __pointer _LIBCPP_NODEBUG = __detected_or_t<_Tp *, __pointer_member, __libcpp_remove_reference_t<_Alloc> >;
5151

5252
// __const_pointer
5353
_LIBCPP_ALLOCATOR_TRAITS_HAS_XXX(__has_const_pointer, const_pointer);
@@ -247,7 +247,7 @@ struct _LIBCPP_TEMPLATE_VIS allocator_traits {
247247
template <class _Tp>
248248
using rebind_alloc = __allocator_traits_rebind_t<allocator_type, _Tp>;
249249
template <class _Tp>
250-
using rebind_traits = allocator_traits<rebind_alloc<_Tp>>;
250+
using rebind_traits = allocator_traits<rebind_alloc<_Tp> >;
251251
#else // _LIBCPP_CXX03_LANG
252252
template <class _Tp>
253253
struct rebind_alloc {

0 commit comments

Comments
 (0)