Fix Wdocumentation warning - use tparam for template parameters. NFC.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Sat, 29 Feb 2020 19:24:21 +0000 (19:24 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Sat, 29 Feb 2020 19:25:02 +0000 (19:25 +0000)
llvm/include/llvm/ADT/CoalescingBitVector.h

index 21b3bbb..6fc81b3 100644 (file)
@@ -33,8 +33,8 @@ namespace llvm {
 /// Compared to SparseBitVector, CoalescingBitVector offers more predictable
 /// performance for non-sequential find() operations.
 ///
-/// \param IndexT - The type of the index into the bitvector.
-/// \param N - The first N coalesced intervals of set bits are stored in-place
+/// \tparam IndexT - The type of the index into the bitvector.
+/// \tparam N - The first N coalesced intervals of set bits are stored in-place
 /// (in the initial heap allocation).
 template <typename IndexT, unsigned N = 16> class CoalescingBitVector {
   static_assert(std::is_unsigned<IndexT>::value,