We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50032a6 + a7e8034 commit 7a434a3Copy full SHA for 7a434a3
lib/Sema/CSSimplify.cpp
@@ -8898,9 +8898,11 @@ bool ConstraintSystem::simplifyAppliedOverloadsImpl(
8898
// If we have a common result type, bind the expected result type to it.
8899
if (commonResultType && !commonResultType->is<ErrorType>()) {
8900
if (isDebugMode()) {
8901
+ PrintOptions PO;
8902
+ PO.PrintTypesForDebugging = true;
8903
llvm::errs().indent(solverState ? solverState->depth * 2 : 0)
8904
<< "(common result type for $T" << fnTypeVar->getID() << " is "
- << commonResultType.getString()
8905
+ << commonResultType.getString(PO)
8906
<< ")\n";
8907
}
8908
0 commit comments