[PATCH] D95244: [clang][AST] Handle overload callee type in CallExpr::getCallReturnType.
Balázs Kéri via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 12 00:34:34 PDT 2021
balazske marked an inline comment as done.
balazske added inline comments.
================
Comment at: clang/lib/AST/Expr.cpp:1386
QualType CalleeType = Callee->getType();
+
if (const auto *FnTypePtr = CalleeType->getAs<PointerType>()) {
----------------
hokein wrote:
> nit: looks like an accident change, remove it.
Fixed in the committed code.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95244/new/
https://reviews.llvm.org/D95244
More information about the cfe-commits
mailing list