File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -827,8 +827,8 @@ public:
827
827
// Users might provide custom allocators, and prior to C++20 we have no existing way to detect whether the allocator's
828
828
// pointer type is contiguous (though it has to be by the Standard). Using the wrapper type ensures the iterator is
829
829
// considered contiguous.
830
- typedef __bounded_iter<__wrap_iter<pointer>> iterator;
831
- typedef __bounded_iter<__wrap_iter<const_pointer>> const_iterator;
830
+ typedef __bounded_iter<__wrap_iter<pointer> > iterator;
831
+ typedef __bounded_iter<__wrap_iter<const_pointer> > const_iterator;
832
832
#else
833
833
typedef __wrap_iter<pointer> iterator;
834
834
typedef __wrap_iter<const_pointer> const_iterator;
Original file line number Diff line number Diff line change @@ -404,8 +404,8 @@ public:
404
404
// Users might provide custom allocators, and prior to C++20 we have no existing way to detect whether the allocator's
405
405
// pointer type is contiguous (though it has to be by the Standard). Using the wrapper type ensures the iterator is
406
406
// considered contiguous.
407
- typedef __bounded_iter<__wrap_iter<pointer>> iterator;
408
- typedef __bounded_iter<__wrap_iter<const_pointer>> const_iterator;
407
+ typedef __bounded_iter<__wrap_iter<pointer> > iterator;
408
+ typedef __bounded_iter<__wrap_iter<const_pointer> > const_iterator;
409
409
#else
410
410
typedef __wrap_iter<pointer> iterator;
411
411
typedef __wrap_iter<const_pointer> const_iterator;
You can’t perform that action at this time.
0 commit comments