This patch adds a NamespaceEndCommentsFixer TokenAnalyzer for clang-format,
which fixes end namespace comments.
It currently supports inserting and updating existing wrong comments.
Example source:
namespace A {
int i;
}
namespace B {
int j;
} // namespace Aafter formatting:
namespace A {
int i;
} // namespace A
namespace B {
int j;
} // namespace B