diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-23 17:21:11 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-23 17:21:11 +0000 |
commit | 53cf5951f08bf1a59e9b83950b0666152ea72021 (patch) | |
tree | 0800934037e463e6d315f7cfc4b38adfd4809bc4 /libstdc++-v3/include/backward | |
parent | 346c08bd078a61e5a11f8ce713ccb4321d0eb39b (diff) | |
download | gcc-53cf5951f08bf1a59e9b83950b0666152ea72021.tar.gz |
2003-01-23 Benjamin Kosnik <bkoz@redhat.com>
* configure.in (libtool_VERSION): To 6:0:0.
* configure: Regenerated.
* config/linker-map.gnu: Clean.
* src/misc-inst.cc: Remove instantiations.
* include/bits/stl_alloc.h (__malloc_alloc_template):
To __malloc_alloc.
(__default_alloc_template): To __pool_alloc.
* src/stl-inst.cc: Same.
* include/backward/alloc.h: Update.
* testsuite/ext/allocators.cc: Update.
* src/globals.cc (__gnu_cxx): Remove _GLIBCPP_ASM_SYMVER. Should
really try to remove these if possible.
* src/locale.cc (std): Same.
* testsuite/abi_check.cc (check_version): Add.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61658 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/backward')
-rw-r--r-- | libstdc++-v3/include/backward/alloc.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libstdc++-v3/include/backward/alloc.h b/libstdc++-v3/include/backward/alloc.h index 9482e4cfeba..6bcc421b7af 100644 --- a/libstdc++-v3/include/backward/alloc.h +++ b/libstdc++-v3/include/backward/alloc.h @@ -1,6 +1,6 @@ // Backward-compat support -*- C++ -*- -// Copyright (C) 2001 Free Software Foundation, Inc. +// Copyright (C) 2001, 2003 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -47,12 +47,13 @@ #include <bits/c++config.h> #include <bits/stl_alloc.h> -using std::__malloc_alloc_template; +using std::__malloc_alloc; using std::__simple_alloc; using std::__debug_alloc; using std::__alloc; using std::__single_client_alloc; +using std::__pool_alloc; using std::allocator; -using std::__default_alloc_template; + #endif |