[llvm] r344402 - Fix Wdocumentation warning. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 12 12:30:44 PDT 2018


Author: rksimon
Date: Fri Oct 12 12:30:43 2018
New Revision: 344402

URL: http://llvm.org/viewvc/llvm-project?rev=344402&view=rev
Log:
Fix Wdocumentation warning. NFCI.

Modified:
    llvm/trunk/include/llvm/DebugInfo/CodeView/TypeRecord.h

Modified: llvm/trunk/include/llvm/DebugInfo/CodeView/TypeRecord.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/CodeView/TypeRecord.h?rev=344402&r1=344401&r2=344402&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo/CodeView/TypeRecord.h (original)
+++ llvm/trunk/include/llvm/DebugInfo/CodeView/TypeRecord.h Fri Oct 12 12:30:43 2018
@@ -657,11 +657,11 @@ public:
 
   /// Indices of known build info arguments.
   enum BuildInfoArg {
-    CurrentDirectory, //< Absolute CWD path
-    BuildTool,        //< Absolute compiler path
-    SourceFile,       //< Path to main source file, relative or absolute
-    TypeServerPDB,    //< Absoulte path of type server PDB (/Fd)
-    CommandLine,      //< Full canonical command line (maybe -cc1)
+    CurrentDirectory, ///< Absolute CWD path
+    BuildTool,        ///< Absolute compiler path
+    SourceFile,       ///< Path to main source file, relative or absolute
+    TypeServerPDB,    ///< Absolute path of type server PDB (/Fd)
+    CommandLine,      ///< Full canonical command line (maybe -cc1)
     MaxArgs
   };
 




More information about the llvm-commits mailing list