[clang] [clang-format] Handle templates in qualified typenames (PR #143194)
Shafik Yaghmour via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 7 19:47:07 PST 2026
================
@@ -3669,12 +3718,11 @@ static FormatToken *getFunctionName(const AnnotatedLine &Line,
}
// Skip to the unqualified part of the name.
- while (Tok->startsSequence(tok::identifier, tok::coloncolon)) {
- assert(Tok->Next);
- Tok = Tok->Next->Next;
- if (!Tok)
- return nullptr;
- }
+ while (FormatToken *Next = skipNameQualifier(Tok))
+ Tok = Next;
+
+ if (!Tok)
+ return nullptr;
----------------
shafik wrote:
Static analysis flagged this code, contrary to comment, this code was not removed.
https://github.com/llvm/llvm-project/pull/143194
More information about the cfe-commits
mailing list