================
@@ -2192,6 +2194,9 @@ static bool IsStandardConversion(Sema &S, Expr* From, 
QualType ToType,
              From->isIntegerConstantExpr(S.getASTContext())) {
     SCS.Second = ICK_Compatible_Conversion;
     FromType = ToType;
+  } else if (ToType->isFixedPointType() || FromType->isFixedPointType()) {
+    SCS.Second = ICK_Fixed_Point_Conversion;
----------------
PiJoules wrote:

Yeah relating to the block in SemaExprCXX seemed easiest to me.

https://github.com/llvm/llvm-project/pull/68344
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to