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:
827827 // Users might provide custom allocators, and prior to C++20 we have no existing way to detect whether the allocator's
828828 // pointer type is contiguous (though it has to be by the Standard). Using the wrapper type ensures the iterator is
829829 // 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;
832832#else
833833 typedef __wrap_iter<pointer> iterator;
834834 typedef __wrap_iter<const_pointer> const_iterator;
Original file line number Diff line number Diff line change @@ -404,8 +404,8 @@ public:
404404 // Users might provide custom allocators, and prior to C++20 we have no existing way to detect whether the allocator's
405405 // pointer type is contiguous (though it has to be by the Standard). Using the wrapper type ensures the iterator is
406406 // 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;
409409#else
410410 typedef __wrap_iter<pointer> iterator;
411411 typedef __wrap_iter<const_pointer> const_iterator;
You can’t perform that action at this time.
0 commit comments