summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/bits/alloc_traits.h
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2021-10-21 17:43:34 +0100
committerJonathan Wakely <jwakely@redhat.com>2021-10-21 22:23:00 +0100
commit6667d5feb9cbb14fc4e2a4f90d9dfa14e24d5bd9 (patch)
tree01b491215fac71701bd7f14d0fa8b4f64753908c /libstdc++-v3/include/bits/alloc_traits.h
parente6d100354317475412161a487ffbcf36582115c5 (diff)
downloadgcc-6667d5feb9cbb14fc4e2a4f90d9dfa14e24d5bd9.tar.gz
libstdc++: Suppress Doxygen docs for more implementation details
libstdc++-v3/ChangeLog: * include/bits/alloc_traits.h: Suppress doxygen documentation. * include/bits/allocated_ptr.h: Likewise. * include/bits/enable_special_members.h: Likewise. * include/bits/hashtable.h: Likewise. * include/bits/hashtable_policy.h: Likewise. * include/bits/uses_allocator.h: Likewise. * include/bits/node_handle.h: Document node handles and suppress documentation for protected members. * include/std/any: Suppress documentation for implementation details.
Diffstat (limited to 'libstdc++-v3/include/bits/alloc_traits.h')
-rw-r--r--libstdc++-v3/include/bits/alloc_traits.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libstdc++-v3/include/bits/alloc_traits.h b/libstdc++-v3/include/bits/alloc_traits.h
index 05b584f742f..602a90d4d8a 100644
--- a/libstdc++-v3/include/bits/alloc_traits.h
+++ b/libstdc++-v3/include/bits/alloc_traits.h
@@ -45,6 +45,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
#if __cplusplus >= 201103L
#define __cpp_lib_allocator_traits_is_always_equal 201411
+ /// @cond undocumented
struct __allocator_traits_base
{
template<typename _Tp, typename _Up, typename = void>
@@ -77,10 +78,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
template<typename _Alloc, typename _Up>
using __alloc_rebind
= typename __allocator_traits_base::template __rebind<_Alloc, _Up>::type;
+ /// @endcond
/**
* @brief Uniform interface to all allocator types.
+ * @headerfile memory
* @ingroup allocators
+ * @since C++11
*/
template<typename _Alloc>
struct allocator_traits : __allocator_traits_base