From 02946de3802d3bc65bc9f2eb9b8d4969b5a7add8 Mon Sep 17 00:00:00 2001 From: Bruno Ricci Date: Mon, 6 Jul 2020 22:37:30 +0100 Subject: [Support][NFC] Fix Wdocumentation warning in ADT/Bitfields.h \tparam is used for template parameters instead of \param. --- llvm/include/llvm/ADT/Bitfields.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'llvm') diff --git a/llvm/include/llvm/ADT/Bitfields.h b/llvm/include/llvm/ADT/Bitfields.h index 68b1549..9891b46 100644 --- a/llvm/include/llvm/ADT/Bitfields.h +++ b/llvm/include/llvm/ADT/Bitfields.h @@ -212,10 +212,10 @@ template <> struct ResolveUnderlyingType { struct Bitfield { /// Describes an element of a Bitfield. This type is then used with the /// Bitfield static member functions. - /// \param T, the type of the field once in unpacked form, - /// \param Offset, the position of the first bit, - /// \param Size, the size of the field, - /// \param MaxValue, For enums the maximum enum allowed. + /// \tparam T The type of the field once in unpacked form. + /// \tparam Offset The position of the first bit. + /// \tparam Size The size of the field. + /// \tparam MaxValue For enums the maximum enum allowed. template ::value ? T(0) // coupled with static_assert below -- cgit v1.1