]> granicus.if.org Git - clang/commitdiff
Fixed -Wdocumentation warning
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 20 Mar 2016 16:25:23 +0000 (16:25 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 20 Mar 2016 16:25:23 +0000 (16:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@263908 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Frontend/FrontendAction.h

index 970be50ad1ab5620bc01074809d9ec139442bede..384499a3d82a7e194487f6c5bc88773b25cd968a 100644 (file)
@@ -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<std::string> &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
   ///