From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 8984A3989C30; Fri, 16 Jul 2021 07:40:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8984A3989C30 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-2344] libstdc++: Adjust doxygen markup for variable templates group [PR101307] X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: c1676651b6c417e8f2b276a28199d76943834277 X-Git-Newrev: da89dfc2a0cb29d3d8a4f2394eee90d150cf6185 Message-Id: <20210716074059.8984A3989C30@sourceware.org> Date: Fri, 16 Jul 2021 07:40:59 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jul 2021 07:40:59 -0000 https://gcc.gnu.org/g:da89dfc2a0cb29d3d8a4f2394eee90d150cf6185 commit r12-2344-gda89dfc2a0cb29d3d8a4f2394eee90d150cf6185 Author: Jonathan Wakely Date: Thu Jul 15 21:13:34 2021 +0100 libstdc++: Adjust doxygen markup for variable templates group [PR101307] libstdc++-v3/ChangeLog: PR libstdc++/101307 * include/std/type_traits: Adjust doxygen markup. Diff: --- libstdc++-v3/include/std/type_traits | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libstdc++-v3/include/std/type_traits b/libstdc++-v3/include/std/type_traits index 91d65234f23..8d9c6394cd8 100644 --- a/libstdc++-v3/include/std/type_traits +++ b/libstdc++-v3/include/std/type_traits @@ -3096,17 +3096,18 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #if __cplusplus >= 201703L # define __cpp_lib_type_trait_variable_templates 201510L /** - * @defgroup variable_templates Variable templates for type traits. + * @defgroup variable_templates Variable templates for type traits * @ingroup metaprogramming * - * The variable `is_foo_v` is a boolean constant with the same value - * as the type trait `is_foo::value`. + * Each variable `is_xxx_v` is a boolean constant with the same value + * as the `value` member of the corresponding type trait `is_xxx`. * * @since C++17 */ - /** @ingroup variable_templates + /** * @{ + * @ingroup variable_templates */ template inline constexpr bool is_void_v = is_void<_Tp>::value;