diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-06-22 09:47:44 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-06-22 09:47:44 +0000 |
commit | 3d9d929e42028c353b0579a1a925391319664a60 (patch) | |
tree | 9fa63e425da0b4e62d2ddc1814b1f6069c7da892 /clang/lib/Driver/Tools.h | |
parent | faf4b655accf9fead77456243fd98da7fca46a20 (diff) | |
download | bcm5719-llvm-3d9d929e42028c353b0579a1a925391319664a60.tar.gz bcm5719-llvm-3d9d929e42028c353b0579a1a925391319664a60.zip |
Fixed/added namespace ending comments using clang-tidy. NFC
The patch is generated using this command:
$ tools/extra/clang-tidy/tool/run-clang-tidy.py -fix \
-checks=-*,llvm-namespace-comment -header-filter='llvm/.*|clang/.*' \
work/llvm/tools/clang
To reduce churn, not touching namespaces spanning less than 10 lines.
llvm-svn: 240270
Diffstat (limited to 'clang/lib/Driver/Tools.h')
-rw-r--r-- | clang/lib/Driver/Tools.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/lib/Driver/Tools.h b/clang/lib/Driver/Tools.h index 753f542622f..58ee29bfb91 100644 --- a/clang/lib/Driver/Tools.h +++ b/clang/lib/Driver/Tools.h @@ -234,7 +234,7 @@ namespace arm { const char* getLLVMArchSuffixForARM(StringRef CPU, StringRef Arch); void appendEBLinkFlags(const llvm::opt::ArgList &Args, ArgStringList &CmdArgs, const llvm::Triple &Triple); -} +} // namespace arm namespace mips { typedef enum { @@ -252,7 +252,7 @@ namespace mips { StringRef ABIName, StringRef FloatABI); bool shouldUseFPXX(const llvm::opt::ArgList &Args, const llvm::Triple &Triple, StringRef CPUName, StringRef ABIName, StringRef FloatABI); -} +} // namespace mips namespace ppc { bool hasPPCAbiArg(const llvm::opt::ArgList &Args, const char *Value); @@ -371,7 +371,7 @@ namespace darwin { const char *LinkingOutput) const override; }; -} +} // namespace darwin /// openbsd -- Directly call GNU Binutils assembler and linker namespace openbsd { @@ -516,7 +516,7 @@ namespace gnutools { const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override; }; -} +} // namespace gnutools namespace nacltools { class LLVM_LIBRARY_VISIBILITY AssembleARM : public gnutools::Assemble { @@ -542,7 +542,7 @@ namespace nacltools { const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override; }; -} +} // namespace nacltools /// minix -- Directly call GNU Binutils assembler and linker namespace minix { @@ -731,7 +731,7 @@ public: const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override; }; -} +} // namespace CrossWindows /// SHAVE tools -- Directly call moviCompile and moviAsm namespace SHAVE { |