diff options
Diffstat (limited to 'libstdc++-v3/include/backward/alloc.h')
-rw-r--r-- | libstdc++-v3/include/backward/alloc.h | 25 |
1 files changed, 8 insertions, 17 deletions
diff --git a/libstdc++-v3/include/backward/alloc.h b/libstdc++-v3/include/backward/alloc.h index bdca643..a90f41f 100644 --- a/libstdc++-v3/include/backward/alloc.h +++ b/libstdc++-v3/include/backward/alloc.h @@ -19,25 +19,16 @@ #include <bits/stl_alloc.h> #endif -#ifdef __STL_USE_NAMESPACES - -using __STD::__malloc_alloc_template; -using __STD::malloc_alloc; -using __STD::simple_alloc; -using __STD::debug_alloc; +using std::__malloc_alloc_template; +using std::malloc_alloc; +using std::simple_alloc; +using std::debug_alloc; #ifndef __USE_MALLOC -using __STD::__default_alloc_template; +using std::__default_alloc_template; #endif -using __STD::alloc; -using __STD::single_client_alloc; -#ifdef __STL_STATIC_TEMPLATE_MEMBER_BUG -using __STD::__malloc_alloc_oom_handler; -#endif /* __STL_STATIC_TEMPLATE_MEMBER_BUG */ -#ifdef __STL_USE_STD_ALLOCATORS -using __STD::allocator; -#endif /* __STL_USE_STD_ALLOCATORS */ - -#endif /* __STL_USE_NAMESPACES */ +using std::alloc; +using std::single_client_alloc; +using std::allocator; #endif /* _CPP_BACKWARD_ALLOC_H */ |