[PATCH] D121450: [clang-format] Handle attributes before case label.
Björn Schäpers via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 21 15:04:53 PDT 2022
HazardyKnusperkeks added inline comments.
================
Comment at: clang/lib/Format/UnwrappedLineParser.cpp:1826
+ if (Style.isJavaScript() && Line->MustBeDeclaration)
+ // 'case: string' field declaration.
+ break;
----------------
Here's the loop. In the switch before that worked, since it was not in a loop. Here we need to do something. (nextToken()?)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121450/new/
https://reviews.llvm.org/D121450
More information about the cfe-commits
mailing list