@@ -334,12 +334,12 @@ struct __outermost<_Alloc, true> {
334334template <class _OuterAlloc , class ... _InnerAllocs>
335335class _LIBCPP_TEMPLATE_VIS scoped_allocator_adaptor<_OuterAlloc, _InnerAllocs...>
336336 : public __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> {
337- typedef __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> base ;
337+ typedef __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> _Base ;
338338 typedef allocator_traits<_OuterAlloc> _OuterTraits;
339339
340340public:
341341 typedef _OuterAlloc outer_allocator_type;
342- typedef typename base ::inner_allocator_type inner_allocator_type;
342+ typedef typename _Base ::inner_allocator_type inner_allocator_type;
343343 typedef typename _OuterTraits::size_type size_type;
344344 typedef typename _OuterTraits::difference_type difference_type;
345345 typedef typename _OuterTraits::pointer pointer;
@@ -365,29 +365,29 @@ public:
365365 template <class _OuterA2 , __enable_if_t <is_constructible<outer_allocator_type, _OuterA2>::value, int > = 0 >
366366 _LIBCPP_HIDE_FROM_ABI
367367 scoped_allocator_adaptor (_OuterA2&& __outer_alloc, const _InnerAllocs&... __inner_allocs) _NOEXCEPT
368- : base (std::forward<_OuterA2>(__outer_alloc), __inner_allocs...) {}
368+ : _Base (std::forward<_OuterA2>(__outer_alloc), __inner_allocs...) {}
369369 // scoped_allocator_adaptor(const scoped_allocator_adaptor& __other) = default;
370370 template <class _OuterA2 , __enable_if_t <is_constructible<outer_allocator_type, const _OuterA2&>::value, int > = 0 >
371371 _LIBCPP_HIDE_FROM_ABI
372372 scoped_allocator_adaptor (const scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>& __other) _NOEXCEPT
373- : base (__other) {}
373+ : _Base (__other) {}
374374 template <class _OuterA2 , __enable_if_t <is_constructible<outer_allocator_type, _OuterA2>::value, int > = 0 >
375375 _LIBCPP_HIDE_FROM_ABI
376376 scoped_allocator_adaptor (scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>&& __other) _NOEXCEPT
377- : base (std::move(__other)) {}
377+ : _Base (std::move(__other)) {}
378378
379379 // scoped_allocator_adaptor& operator=(const scoped_allocator_adaptor&) = default;
380380 // scoped_allocator_adaptor& operator=(scoped_allocator_adaptor&&) = default;
381381 // ~scoped_allocator_adaptor() = default;
382382
383- _LIBCPP_HIDE_FROM_ABI inner_allocator_type& inner_allocator () _NOEXCEPT { return base ::inner_allocator (); }
383+ _LIBCPP_HIDE_FROM_ABI inner_allocator_type& inner_allocator () _NOEXCEPT { return _Base ::inner_allocator (); }
384384 _LIBCPP_HIDE_FROM_ABI const inner_allocator_type& inner_allocator () const _NOEXCEPT {
385- return base ::inner_allocator ();
385+ return _Base ::inner_allocator ();
386386 }
387387
388- _LIBCPP_HIDE_FROM_ABI outer_allocator_type& outer_allocator () _NOEXCEPT { return base ::outer_allocator (); }
388+ _LIBCPP_HIDE_FROM_ABI outer_allocator_type& outer_allocator () _NOEXCEPT { return _Base ::outer_allocator (); }
389389 _LIBCPP_HIDE_FROM_ABI const outer_allocator_type& outer_allocator () const _NOEXCEPT {
390- return base ::outer_allocator ();
390+ return _Base ::outer_allocator ();
391391 }
392392
393393 _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_HIDE_FROM_ABI pointer allocate (size_type __n) {
@@ -472,12 +472,12 @@ public:
472472 }
473473
474474 _LIBCPP_HIDE_FROM_ABI scoped_allocator_adaptor select_on_container_copy_construction () const _NOEXCEPT {
475- return base ::select_on_container_copy_construction ();
475+ return _Base ::select_on_container_copy_construction ();
476476 }
477477
478478private:
479479 _LIBCPP_HIDE_FROM_ABI explicit scoped_allocator_adaptor (
480- outer_allocator_type&& __o, inner_allocator_type&& __i) _NOEXCEPT : base (std::move(__o), std::move(__i)) {}
480+ outer_allocator_type&& __o, inner_allocator_type&& __i) _NOEXCEPT : _Base (std::move(__o), std::move(__i)) {}
481481
482482 template <class _Tp , class ... _Args>
483483 _LIBCPP_HIDE_FROM_ABI void __construct (integral_constant<int , 0 >, _Tp* __p, _Args&&... __args) {
0 commit comments