diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-09-13 07:58:46 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-09-13 07:58:46 +0000 |
commit | 43965b0123f56496a62379a791106a7b04c0a560 (patch) | |
tree | 6ae016b064a0953d1546bb53a34a52a21f252a28 /clang/lib/Driver/ToolChains/Darwin.h | |
parent | cb888a620d61da9b12639d24779a7c62b03f06f1 (diff) | |
download | bcm5719-llvm-43965b0123f56496a62379a791106a7b04c0a560.tar.gz bcm5719-llvm-43965b0123f56496a62379a791106a7b04c0a560.zip |
clang/lib/Driver/ToolChains/Darwin.h: Add proper style to comments. [-Wdocumentation]
llvm-svn: 313128
Diffstat (limited to 'clang/lib/Driver/ToolChains/Darwin.h')
-rw-r--r-- | clang/lib/Driver/ToolChains/Darwin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Driver/ToolChains/Darwin.h b/clang/lib/Driver/ToolChains/Darwin.h index 3c6c740645c..bcc76111a4e 100644 --- a/clang/lib/Driver/ToolChains/Darwin.h +++ b/clang/lib/Driver/ToolChains/Darwin.h @@ -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, }; |