From: Simon Pilgrim Date: Sun, 20 Mar 2016 16:25:23 +0000 (+0000) Subject: Fixed -Wdocumentation warning X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=059da91415e68684c394662c541b107e91905b31;p=clang Fixed -Wdocumentation warning git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@263908 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Frontend/FrontendAction.h b/include/clang/Frontend/FrontendAction.h index 970be50ad1..384499a3d8 100644 --- a/include/clang/Frontend/FrontendAction.h +++ b/include/clang/Frontend/FrontendAction.h @@ -130,7 +130,7 @@ public: const FrontendInputFile &getCurrentInput() const { return CurrentInput; } - + const StringRef getCurrentFile() const { assert(!CurrentInput.isEmpty() && "No current file!"); return CurrentInput.getFile(); @@ -157,7 +157,7 @@ public: /// @name Supported Modes /// @{ - /// \brief Is this action invoked on a model file? + /// \brief Is this action invoked on a model file? /// /// Model files are incomplete translation units that relies on type /// information from another translation unit. Check ParseModelFileAction for @@ -251,10 +251,10 @@ public: const std::vector &arg) = 0; enum ActionType { - Cmdline, //< Action is determined by the cc1 command-line - ReplaceAction, //< Replace the main action - AddBeforeMainAction, //< Execute the action before the main action - AddAfterMainAction //< Execute the action after the main action + Cmdline, ///< Action is determined by the cc1 command-line + ReplaceAction, ///< Replace the main action + AddBeforeMainAction, ///< Execute the action before the main action + AddAfterMainAction ///< Execute the action after the main action }; /// \brief Get the action type for this plugin ///