Threading.h: Use \tparam for template parameters. [-Wdocumentation]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 14 Oct 2014 09:34:16 +0000 (09:34 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 14 Oct 2014 09:34:16 +0000 (09:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219676 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Threading.h

index 343acda8f843f3d2322cd5a8f526c50b5fabad93..cc9727031fddd656dc4353eddc6ca1d5ac1b600a 100644 (file)
@@ -52,7 +52,7 @@ namespace llvm {
 ///   llvm_call_once<foo>();
 /// \endcode
 ///
-/// \param UserFn Function to call once.
+/// \tparam UserFn Function to call once.
 template <void (*UserFn)(void)> void llvm_call_once() {
 #if !defined(__MINGW__)
   static std::once_flag flag;