================
@@ -2474,6 +2480,11 @@ class AnnotatingParser {
Current.getNextNonComment()->isOneOf(tok::comma, tok::r_brace)) {
Current.setType(TT_StringInConcatenation);
}
+ } else if (Style.isCpp() && Current.is(tok::kw_using)) {
+ if (Current.Next && Current.Next->Next && Current.Next->Next->Next) {
+ if (Current.Next->Next->Next->isTypeName(LangOpts))
----------------
dty2 wrote:
You are right, I would plan to do it using the way you mentioned in #121318.
https://github.com/llvm/llvm-project/pull/120904
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits