30#ifndef _GLIBCXX_CXX_ALLOCATOR_H
31#define _GLIBCXX_CXX_ALLOCATOR_H 1
35#if __cplusplus >= 201103L
46 template<
typename _Tp>
51# define __allocator_base __new_allocator
54#ifndef _GLIBCXX_SANITIZE_STD_ALLOCATOR
55# if defined(__SANITIZE_ADDRESS__)
56# define _GLIBCXX_SANITIZE_STD_ALLOCATOR 1
57# elif defined __has_feature
58# if __has_feature(address_sanitizer)
59# define _GLIBCXX_SANITIZE_STD_ALLOCATOR 1
__new_allocator< _Tp > __allocator_base
An alias to the base class for std::allocator.
ISO C++ entities toplevel namespace is std.
An allocator that uses global new, as per C++03 [20.4.1].