@@ -334,12 +334,12 @@ struct __outermost<_Alloc, true> {
334
334
template <class _OuterAlloc , class ... _InnerAllocs>
335
335
class _LIBCPP_TEMPLATE_VIS scoped_allocator_adaptor<_OuterAlloc, _InnerAllocs...>
336
336
: public __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> {
337
- typedef __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> base ;
337
+ typedef __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> _Base ;
338
338
typedef allocator_traits<_OuterAlloc> _OuterTraits;
339
339
340
340
public:
341
341
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;
343
343
typedef typename _OuterTraits::size_type size_type;
344
344
typedef typename _OuterTraits::difference_type difference_type;
345
345
typedef typename _OuterTraits::pointer pointer;
@@ -365,29 +365,29 @@ public:
365
365
template <class _OuterA2 , __enable_if_t <is_constructible<outer_allocator_type, _OuterA2>::value, int > = 0 >
366
366
_LIBCPP_HIDE_FROM_ABI
367
367
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...) {}
369
369
// scoped_allocator_adaptor(const scoped_allocator_adaptor& __other) = default;
370
370
template <class _OuterA2 , __enable_if_t <is_constructible<outer_allocator_type, const _OuterA2&>::value, int > = 0 >
371
371
_LIBCPP_HIDE_FROM_ABI
372
372
scoped_allocator_adaptor (const scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>& __other) _NOEXCEPT
373
- : base (__other) {}
373
+ : _Base (__other) {}
374
374
template <class _OuterA2 , __enable_if_t <is_constructible<outer_allocator_type, _OuterA2>::value, int > = 0 >
375
375
_LIBCPP_HIDE_FROM_ABI
376
376
scoped_allocator_adaptor (scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>&& __other) _NOEXCEPT
377
- : base (std::move(__other)) {}
377
+ : _Base (std::move(__other)) {}
378
378
379
379
// scoped_allocator_adaptor& operator=(const scoped_allocator_adaptor&) = default;
380
380
// scoped_allocator_adaptor& operator=(scoped_allocator_adaptor&&) = default;
381
381
// ~scoped_allocator_adaptor() = default;
382
382
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 (); }
384
384
_LIBCPP_HIDE_FROM_ABI const inner_allocator_type& inner_allocator () const _NOEXCEPT {
385
- return base ::inner_allocator ();
385
+ return _Base ::inner_allocator ();
386
386
}
387
387
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 (); }
389
389
_LIBCPP_HIDE_FROM_ABI const outer_allocator_type& outer_allocator () const _NOEXCEPT {
390
- return base ::outer_allocator ();
390
+ return _Base ::outer_allocator ();
391
391
}
392
392
393
393
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_HIDE_FROM_ABI pointer allocate (size_type __n) {
@@ -472,12 +472,12 @@ public:
472
472
}
473
473
474
474
_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 ();
476
476
}
477
477
478
478
private:
479
479
_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)) {}
481
481
482
482
template <class _Tp , class ... _Args>
483
483
_LIBCPP_HIDE_FROM_ABI void __construct (integral_constant<int , 0 >, _Tp* __p, _Args&&... __args) {
0 commit comments