From a7389cb9503ea4c3a39d39156e5db7226b4dd6a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 1 Apr 2021 10:09:07 +0200 Subject: [PATCH] Math: doc++ --- src/Magnum/Math/TypeTraits.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Magnum/Math/TypeTraits.h b/src/Magnum/Math/TypeTraits.h index 1a4de8391..2a4ad7729 100644 --- a/src/Magnum/Math/TypeTraits.h +++ b/src/Magnum/Math/TypeTraits.h @@ -308,9 +308,9 @@ namespace Implementation { /** @brief Traits class for builtin arithmetic types -Traits classes are usable for detecting type features at compile time without -the need for repeated code such as method overloading or template -specialization for given types. All builtin arithmetic types have this class +Useful for detecting type features at compile time without the need for +repeated code such as method overloading, cascaded ifs or template +specializations for given types. All builtin arithmetic types have this class implemented. */ template struct TypeTraits: Implementation::TypeTraitsDefault { @@ -333,8 +333,8 @@ template struct TypeTraits: Implementation::TypeTraitsDefault { /** * @brief Type name * - * Returns a string representation of type name, such as `"UnsignedInt"` - * for @ref Magnum::UnsignedInt "UnsignedInt". + * Returns a string representation of type name, such as + * @cpp "UnsignedInt" @ce for @relativeref{Magnum,UnsignedInt}. */ constexpr static const char* name();