]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Fix Doxygen commands
authorJonathan Wakely <jwakely@redhat.com>
Fri, 16 Sep 2022 10:36:41 +0000 (11:36 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 16 Sep 2022 14:54:41 +0000 (15:54 +0100)
Remove the bogus -D__allocator_base=std::__new_allocator macro
definition for Doxygen, because that's an alias template for C++11 and
later, not a macro.

Fix the @cond/@endcond pair that span the end of an @addtogroup group.
Add another @endcond inside the group, and another @cond after it.

libstdc++-v3/ChangeLog:

* doc/doxygen/user.cfg.in (PREDEFINED): Remove __allocator_base.
* include/bits/allocator.h: Fix nesting of Doxygen commands.

libstdc++-v3/doc/doxygen/user.cfg.in
libstdc++-v3/include/bits/allocator.h

index 57270bdeb7aa532a0da38cd1db6106a3bada2605..834ad9e4fd52a4d648b26aee1170d2aa28c779af 100644 (file)
@@ -2407,7 +2407,6 @@ PREDEFINED             = __cplusplus=202002L \
                          _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED \
                          _GLIBCXX_HAVE_BUILTIN_LAUNDER \
                         "_GLIBCXX_DOXYGEN_ONLY(X)=X " \
-                        __allocator_base=std::__new_allocator \
                         __exception_ptr=__unspecified__ \
 
 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
index aec0b374fd185c5dd1e366f608002e76b26dae3a..28abf13eba937821fd91d58fa1ac5b607d4a064b 100644 (file)
@@ -265,6 +265,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
       typedef _Tp value_type;
       template<typename _Up> allocator(const allocator<_Up>&) { }
     };
+  /// @endcond
 
   /// @} group allocator
 
@@ -278,6 +279,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   // Undefine.
 #undef __allocator_base
 
+  /// @cond undocumented
+
   // To implement Option 3 of DR 431.
   template<typename _Alloc, bool = __is_empty(_Alloc)>
     struct __alloc_swap