]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Hide std::tuple internals from Doxygen docs
authorJonathan Wakely <jwakely@redhat.com>
Fri, 23 Aug 2024 21:06:43 +0000 (22:06 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 23 Aug 2024 21:06:43 +0000 (22:06 +0100)
libstdc++-v3/ChangeLog:

* include/std/tuple: Do not include implementation details in
Doxygen documentation.

libstdc++-v3/include/std/tuple

index 93b649e7d21109e2c91a2b02c8513e76f454dde3..70cf4dba7b93a5c142d37a0c82c71c9365cf9ce2 100644 (file)
@@ -66,6 +66,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   template<typename... _Elements>
     class tuple;
 
+  /// @cond undocumented
   template<typename _Tp>
     struct __is_empty_non_tuple : is_empty<_Tp> { };
 
@@ -823,6 +824,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        static constexpr bool __is_explicitly_constructible()
        { return false; }
     };
+  /// @endcond
 
   /// Primary class template, tuple
   template<typename... _Elements>