================ @@ -7031,6 +7031,7 @@ ExprResult Sema::PerformContextualImplicitConversion( // Try converting the expression to an Lvalue first, to get rid of qualifiers. ExprResult Converted = DefaultLvalueConversion(From); QualType T = Converted.isUsable() ? Converted.get()->getType() : QualType(); + From = Converted.get(); ---------------- shafik wrote:
So above we check `Converted.isUsable()` does this matter here? https://github.com/llvm/llvm-project/pull/203522 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
