[llvm] r219676 - Threading.h: Use \tparam for template parameters. [-Wdocumentation]

NAKAMURA Takumi geek4civic at gmail.com
Tue Oct 14 02:34:16 PDT 2014


Author: chapuni
Date: Tue Oct 14 04:34:16 2014
New Revision: 219676

URL: http://llvm.org/viewvc/llvm-project?rev=219676&view=rev
Log:
Threading.h: Use \tparam for template parameters. [-Wdocumentation]

Modified:
    llvm/trunk/include/llvm/Support/Threading.h

Modified: llvm/trunk/include/llvm/Support/Threading.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Threading.h?rev=219676&r1=219675&r2=219676&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Threading.h (original)
+++ llvm/trunk/include/llvm/Support/Threading.h Tue Oct 14 04:34:16 2014
@@ -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;





More information about the llvm-commits mailing list