diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2021-07-15 21:13:34 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2021-07-16 08:40:43 +0100 |
commit | da89dfc2a0cb29d3d8a4f2394eee90d150cf6185 (patch) | |
tree | 95e6bc70a5acd467d3f1fb3b70c7a5e846fb2df2 | |
parent | c1676651b6c417e8f2b276a28199d76943834277 (diff) | |
download | gcc-da89dfc2a0cb29d3d8a4f2394eee90d150cf6185.zip gcc-da89dfc2a0cb29d3d8a4f2394eee90d150cf6185.tar.gz gcc-da89dfc2a0cb29d3d8a4f2394eee90d150cf6185.tar.bz2 |
libstdc++: Adjust doxygen markup for variable templates group [PR101307]
libstdc++-v3/ChangeLog:
PR libstdc++/101307
* include/std/type_traits: Adjust doxygen markup.
-rw-r--r-- | libstdc++-v3/include/std/type_traits | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libstdc++-v3/include/std/type_traits b/libstdc++-v3/include/std/type_traits index 91d6523..8d9c639 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<T>` is a boolean constant with the same value - * as the type trait `is_foo<T>::value`. + * Each variable `is_xxx_v<T>` is a boolean constant with the same value + * as the `value` member of the corresponding type trait `is_xxx<T>`. * * @since C++17 */ - /** @ingroup variable_templates + /** * @{ + * @ingroup variable_templates */ template <typename _Tp> inline constexpr bool is_void_v = is_void<_Tp>::value; |