From d0d9d1e3d232d4025bcb776117dc6a0df71da23c Mon Sep 17 00:00:00 2001 From: Adrian Kuegel Date: Tue, 25 Oct 2022 11:04:59 +0200 Subject: [PATCH] [clang-format] Move bracket to correct line. --- clang/lib/Format/TokenAnnotator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index 0b613c9..da6e21c 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -1344,8 +1344,8 @@ private: while (CurrentToken) { if (IsMarkOrRegion || CurrentToken->Previous->is(TT_BinaryOperator)) { CurrentToken->setType(TT_ImplicitStringLiteral); - next(); } + next(); } } } -- 2.7.4