r313128 - clang/lib/Driver/ToolChains/Darwin.h: Add proper style to comments. [-Wdocumentation]

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 13 00:58:46 PDT 2017


Author: chapuni
Date: Wed Sep 13 00:58:46 2017
New Revision: 313128

URL: http://llvm.org/viewvc/llvm-project?rev=313128&view=rev
Log:
clang/lib/Driver/ToolChains/Darwin.h: Add proper style to comments. [-Wdocumentation]

Modified:
    cfe/trunk/lib/Driver/ToolChains/Darwin.h

Modified: cfe/trunk/lib/Driver/ToolChains/Darwin.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/ToolChains/Darwin.h?rev=313128&r1=313127&r2=313128&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/ToolChains/Darwin.h (original)
+++ cfe/trunk/lib/Driver/ToolChains/Darwin.h Wed Sep 13 00:58:46 2017
@@ -174,16 +174,16 @@ public:
 
   /// Options to control how a runtime library is linked.
   enum RuntimeLinkOptions : unsigned {
-    // Link the library in even if it can't be found in the VFS.
+    /// Link the library in even if it can't be found in the VFS.
     RLO_AlwaysLink = 1 << 0,
 
-    // Use the embedded runtime from the macho_embedded directory.
+    /// Use the embedded runtime from the macho_embedded directory.
     RLO_IsEmbedded = 1 << 1,
 
-    // Emit rpaths for @executable_path as well as the resource directory.
+    /// Emit rpaths for @executable_path as well as the resource directory.
     RLO_AddRPath = 1 << 2,
 
-    //< Link the library in before any others.
+    /// Link the library in before any others.
     RLO_FirstLink = 1 << 3,
   };
 




More information about the cfe-commits mailing list