From: Jonathan Wakely Date: Fri, 23 Aug 2024 21:06:43 +0000 (+0100) Subject: libstdc++: Hide std::tuple internals from Doxygen docs X-Git-Tag: basepoints/gcc-16~6412 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5cfee9360c90da8171e9f6bb71568bdc4c296e6e;p=thirdparty%2Fgcc.git libstdc++: Hide std::tuple internals from Doxygen docs libstdc++-v3/ChangeLog: * include/std/tuple: Do not include implementation details in Doxygen documentation. --- diff --git a/libstdc++-v3/include/std/tuple b/libstdc++-v3/include/std/tuple index 93b649e7d21..70cf4dba7b9 100644 --- a/libstdc++-v3/include/std/tuple +++ b/libstdc++-v3/include/std/tuple @@ -66,6 +66,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template class tuple; + /// @cond undocumented template 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