erichkeane added inline comments.
================ Comment at: clang/lib/Sema/SemaType.cpp:8824 + if (auto *Cast = dyn_cast<CXXStaticCastExpr>(E)) { + if (auto *SubInit = dyn_cast<CXXParenListInitExpr>(Cast->getSubExpr())) { + const Type *InnerType = SubInit->getType().getTypePtr(); ---------------- I am not really sure this is the right way about this. You're supposed to be testing `T`, but this looks like it is checking the type of `E`, isn't it? I think you just need to check `Cast->getType()`. ================ Comment at: clang/lib/Sema/SemaType.cpp:8826 + const Type *InnerType = SubInit->getType().getTypePtr(); + if (const auto *AT = dyn_cast<ConstantArrayType>(InnerType); + AT && AT->getSize() == 1) { ---------------- Not supposed to have curleys here. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D152003/new/ https://reviews.llvm.org/D152003 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits