[PATCH] D75364: [clang-format] Handle macros in function params and return value
MyDeveloperDay via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 3 10:15:13 PDT 2020
MyDeveloperDay added inline comments.
================
Comment at: clang/lib/Format/TokenAnnotator.cpp:164
+ /// Parses CPP qualified function names.
+ bool parse_function_qname(FormatToken *Tok) const {
+ while (Tok && Tok->isOneOf(tok::coloncolon, tok::identifier)) {
----------------
your naming convention is incorrect it would be `parseFunctionQualifiedName`
what are your trying to do here? are you just trying to skip the to the `(`
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75364/new/
https://reviews.llvm.org/D75364
More information about the cfe-commits
mailing list