From: NAKAMURA Takumi Date: Thu, 16 Oct 2014 00:14:57 +0000 (+0000) Subject: llvm/Support/Options.h: Use \tparam. [-Wdocumentation] X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cbfd91dc20d511db68b40b80d84216f33aba3789;p=oota-llvm.git llvm/Support/Options.h: Use \tparam. [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219881 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/Options.h b/include/llvm/Support/Options.h index e1a1ca7215e..1e387a8353f 100644 --- a/include/llvm/Support/Options.h +++ b/include/llvm/Support/Options.h @@ -81,9 +81,9 @@ public: /// \brief Registers an option with the OptionRegistry singleton. /// - /// \param ValT type of the option's data - /// \param Base class used to key the option - /// \param Mem member of \p Base used for keying the option + /// \tparam ValT type of the option's data + /// \tparam Base class used to key the option + /// \tparam Mem member of \p Base used for keying the option /// /// Options are keyed off the template parameters to generate unique static /// characters. The template parameters are (1) the type of the data the @@ -99,9 +99,9 @@ public: /// \brief Returns the value of the option. /// - /// \param ValT type of the option's data - /// \param Base class used to key the option - /// \param Mem member of \p Base used for keying the option + /// \tparam ValT type of the option's data + /// \tparam Base class used to key the option + /// \tparam Mem member of \p Base used for keying the option /// /// Reads option values based on the key generated by the template parameters. /// Keying for get() is the same as keying for registerOption.