[PATCH] D110068: [Clang][AST] Resolve FIXME: Remove ObjCObjectPointer from isSpecifierType
Alf via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Sep 25 06:05:02 PDT 2021
gAlfonso-bit added inline comments.
================
Comment at: clang/lib/AST/DeclPrinter.cpp:161-163
+ else if (const ArrayType *ATy = dyn_cast<ArrayType>(BaseType))
BaseType = ATy->getElementType();
+ else if (const FunctionType *FTy = BaseType->getAs<FunctionType>())
----------------
dexonsmith wrote:
> Seems unrelated to this commit?
Did it to quiet clang-tidy because I modified this function
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110068/new/
https://reviews.llvm.org/D110068
More information about the cfe-commits
mailing list