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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219676 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2014-10-14 09:34:16 +00:00
parent 0ba4483d01
commit 45ed68789b

View 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;