From: Adrian Kuegel Date: Tue, 25 Oct 2022 09:04:59 +0000 (+0200) Subject: [clang-format] Move bracket to correct line. X-Git-Tag: upstream/17.0.6~29595 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d0d9d1e3d232d4025bcb776117dc6a0df71da23c;p=platform%2Fupstream%2Fllvm.git [clang-format] Move bracket to correct line. --- 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(); } } }