[PATCH] D91950: [clang-format] Add BreakBeforeInlineASMColon configuration
MyDeveloperDay via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 27 03:59:49 PST 2020
MyDeveloperDay added a comment.
1. You need to default initialize BreakBeforeInlineASMColon in the LLVM style.
FormatStyle getLLVMStyle(FormatStyle::LanguageKind Language) {
...
LLVMStyle.BreakBeforeInlineASMColon = false;
...
2. You need a "CHECK_PARSE_BOOL" unit test
CHECK_PARSE_BOOL(BreakBeforeInlineASMColon );
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91950/new/
https://reviews.llvm.org/D91950
More information about the cfe-commits
mailing list