We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8052b15 commit 74aa02dCopy full SHA for 74aa02d
clang/lib/Format/QualifierAlignmentFixer.cpp
@@ -415,8 +415,7 @@ const FormatToken *LeftRightQualifierAlignmentFixer::analyzeLeft(
415
// The case `long volatile long int const` -> `const volatile long long int`
416
if (TypeToken->isTypeName(LangOpts)) {
417
for (const auto *Prev = TypeToken->Previous;
418
- Prev && Prev->is(tok::coloncolon);
419
- Prev = Prev->Previous) {
+ Prev && Prev->is(tok::coloncolon); Prev = Prev->Previous) {
420
TypeToken = Prev;
421
Prev = Prev->Previous;
422
if (!(Prev && Prev->is(tok::identifier)))
0 commit comments