[PATCH] D124705: [clang-tidy] Add missing closing comment for `llvm` namespace
Ken Matsui via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 29 16:39:05 PDT 2022
ken-matsui created this revision.
Herald added subscribers: dexonsmith, xazax.hun.
Herald added a project: All.
ken-matsui requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
As `clang-tidy` suggested adding a closing comment for the `llvm` namespace, I added it.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D124705
Files:
llvm/include/llvm/ADT/None.h
Index: llvm/include/llvm/ADT/None.h
===================================================================
--- llvm/include/llvm/ADT/None.h
+++ llvm/include/llvm/ADT/None.h
@@ -22,6 +22,6 @@
// (constant value 1 in an attempt to workaround MSVC build issue... )
enum class NoneType { None = 1 };
const NoneType None = NoneType::None;
-}
+} // end namespace llvm
#endif
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124705.426189.patch
Type: text/x-patch
Size: 372 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220429/4720fed3/attachment.bin>
More information about the llvm-commits
mailing list