This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 7cf8dd5 clang-format: [JS] whitespace after async in arrow functions. new 1741253 [clang-format] Add a NamespaceEndCommentsFixer
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/Format/Format.h | 9 + lib/Format/CMakeLists.txt | 1 + lib/Format/Format.cpp | 11 + lib/Format/NamespaceEndCommentsFixer.cpp | 165 ++++++++++ lib/Format/NamespaceEndCommentsFixer.h | 37 +++ lib/Format/TokenAnnotator.h | 2 + lib/Format/UnwrappedLineParser.cpp | 3 + lib/Format/UnwrappedLineParser.h | 12 +- unittests/Format/CMakeLists.txt | 3 +- unittests/Format/NamespaceEndCommentsFixerTest.cpp | 350 +++++++++++++++++++++ 10 files changed, 590 insertions(+), 3 deletions(-) create mode 100644 lib/Format/NamespaceEndCommentsFixer.cpp create mode 100644 lib/Format/NamespaceEndCommentsFixer.h create mode 100644 unittests/Format/NamespaceEndCommentsFixerTest.cpp