diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-05-02 16:45:04 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-05-02 16:45:04 +0100 |
commit | c05ab418b30ebf00f02e43c697254ebcaa8cc579 (patch) | |
tree | 05ba11086749869877a8d53ea66b96cf490d3c2a /libstdc++-v3/config | |
parent | d16250de4a4c8a63ebf68095dfb18581b655734c (diff) | |
download | gcc-c05ab418b30ebf00f02e43c697254ebcaa8cc579.zip gcc-c05ab418b30ebf00f02e43c697254ebcaa8cc579.tar.gz gcc-c05ab418b30ebf00f02e43c697254ebcaa8cc579.tar.bz2 |
Improve API docs for <memory> and <scoped_allocator>
* config/allocator/new_allocator_base.h (__allocator_base): Add
workaround for Doxygen bug #6945.
* include/std/memory: Improve docs. Define group for pointer safety.
* include/std/scoped_allocator: Improve docs. Use "undocumented"
conditional to suppress documentation for implementation details.
From-SVN: r270807
Diffstat (limited to 'libstdc++-v3/config')
-rw-r--r-- | libstdc++-v3/config/allocator/new_allocator_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/config/allocator/new_allocator_base.h b/libstdc++-v3/config/allocator/new_allocator_base.h index 77ea9df..a81ca96 100644 --- a/libstdc++-v3/config/allocator/new_allocator_base.h +++ b/libstdc++-v3/config/allocator/new_allocator_base.h @@ -37,11 +37,11 @@ namespace std { /** * @brief An alias to the base class for std::allocator. - * @ingroup allocators * * Used to set the std::allocator base class to * __gnu_cxx::new_allocator. * + * @ingroup allocators * @tparam _Tp Type of allocated object. */ template<typename _Tp> |