Index: clang/lib/Format/TokenAnnotator.cpp =================================================================== --- clang/lib/Format/TokenAnnotator.cpp +++ clang/lib/Format/TokenAnnotator.cpp @@ -1352,9 +1352,8 @@ next(); next(); // Consume first token (so we fix leading whitespace). while (CurrentToken) { - if (IsMarkOrRegion || CurrentToken->Previous->is(TT_BinaryOperator)) { + if (IsMarkOrRegion || CurrentToken->Previous->is(TT_BinaryOperator)) CurrentToken->setType(TT_ImplicitStringLiteral); - } next(); } }