[PATCH] D104044: [clang-format] Fix the issue of no empty line after namespace
MyDeveloperDay via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 11 08:53:39 PDT 2021
MyDeveloperDay added a comment.
Devils advocate how is this any different from
class Foo {
class Bar {} ;
}
};
This would become
class Foo {
class Bar {};
};
i.e. its going to remove the extra lines, just asking so we can understand if the removal of the line is the error or the fact it doesn't remove the line in the first place?
Repository:
rZORG LLVM Github Zorg
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104044/new/
https://reviews.llvm.org/D104044
More information about the cfe-commits
mailing list