diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-24 04:11:23 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-24 04:11:23 +0000 |
commit | b2a667470bd6e2d8be2b883deca0ae6934e66940 (patch) | |
tree | bd9c019ce149788080d32cf3857bc82ca8487be7 /libstdc++-v3/include/bits/allocator.h | |
parent | dbc5786edfa14f2bc5b8b97bc05d58114ca45dfb (diff) | |
download | ppe42-gcc-b2a667470bd6e2d8be2b883deca0ae6934e66940.tar.gz ppe42-gcc-b2a667470bd6e2d8be2b883deca0ae6934e66940.zip |
2004-11-23 Benjamin Kosnik <bkoz@redhat.com>
* docs/doxygen/doxygroups.cc: Add std::tr1 namespace.
* docs/doxygen/run_doxygen: Renames for std::tr1.
* docs/doxygen/user.cfg.in: Add cxxabi.h.
* include/bits/*.tcc: Add file markup.
* include/bits/allocator.h: Add link to allocator.html.
* include/bits/atomicity.h: Add file markup.
* include/bits/concurrence.h: Same.
* include/bits/functexcept.h: Same.
* include/ext*: Adjust file markup, remove GCC3 bits.
* include/std/*: Adjust file markup, remove bits about renamed files.
* libsupc++/cxxabi.h: Add file markup.
* testsuite/20_util/memory/auto_ptr/assign_neg.cc: Adjust line numbers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91135 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits/allocator.h')
-rw-r--r-- | libstdc++-v3/include/bits/allocator.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/allocator.h b/libstdc++-v3/include/bits/allocator.h index fb8c4ba40a6..c28442fc6fa 100644 --- a/libstdc++-v3/include/bits/allocator.h +++ b/libstdc++-v3/include/bits/allocator.h @@ -56,6 +56,7 @@ namespace std template<typename _Tp> class allocator; + /// allocator<void> specialization. template<> class allocator<void> { @@ -71,7 +72,12 @@ namespace std { typedef allocator<_Tp1> other; }; }; - /// @brief The "standard" allocator, as per [20.4]. + /** + * @brief The "standard" allocator, as per [20.4]. + * + * Further details: + * http://gcc.gnu.org/onlinedocs/libstdc++/20_util/allocator.html + */ template<typename _Tp> class allocator: public ___glibcxx_base_allocator<_Tp> { |