[clang-format] Move bracket to correct line.
authorAdrian Kuegel <akuegel@google.com>
Tue, 25 Oct 2022 09:04:59 +0000 (11:04 +0200)
committerAdrian Kuegel <akuegel@google.com>
Tue, 25 Oct 2022 09:06:02 +0000 (11:06 +0200)
clang/lib/Format/TokenAnnotator.cpp

index 0b613c9..da6e21c 100644 (file)
@@ -1344,8 +1344,8 @@ private:
       while (CurrentToken) {
         if (IsMarkOrRegion || CurrentToken->Previous->is(TT_BinaryOperator)) {
           CurrentToken->setType(TT_ImplicitStringLiteral);
-        next();
         }
+        next();
       }
     }
   }