diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2021-01-27 13:57:43 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2021-01-27 15:39:31 +0000 |
commit | 30829a27ca4cfafa6bf1262b690bab1e5e49ff69 (patch) | |
tree | c602675af029c4380b4e224ed8c7998ca20646fc /llvm/lib/Support/CommandLine.cpp | |
parent | b3718eee0eb1ff2c8673782efee13aeef86e084e (diff) | |
download | llvm-30829a27ca4cfafa6bf1262b690bab1e5e49ff69.zip llvm-30829a27ca4cfafa6bf1262b690bab1e5e49ff69.tar.gz llvm-30829a27ca4cfafa6bf1262b690bab1e5e49ff69.tar.bz2 |
[Support] CommandLine.cpp - Fix clang-tidy namespace comment warnings. NFCI.
Ensure namespace braces have the correct comment with them
Diffstat (limited to 'llvm/lib/Support/CommandLine.cpp')
-rw-r--r-- | llvm/lib/Support/CommandLine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index 5a0a2bc..c9d921a 100644 --- a/llvm/lib/Support/CommandLine.cpp +++ b/llvm/lib/Support/CommandLine.cpp @@ -72,8 +72,8 @@ template class opt<int>; template class opt<std::string>; template class opt<char>; template class opt<bool>; -} -} // end namespace llvm::cl +} // namespace cl +} // namespace llvm // Pin the vtables to this file. void GenericOptionValue::anchor() {} |