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.
1 parent 481a561 commit d3e9eaaCopy full SHA for d3e9eaa
include/swift/Sema/ConstraintSystem.h
@@ -1108,15 +1108,14 @@ struct Score {
1108
bool hasNonDefault = false;
1109
for (unsigned int i = 0; i < NumScoreKinds; ++i) {
1110
if (Data[i] != 0) {
1111
- out << " [";
+ out << " [component: ";
1112
out << getNameFor(ScoreKind(i));
1113
- out << "(s) = ";
+ out << "(s), value: ";
1114
out << std::to_string(Data[i]);
1115
out << "]";
1116
hasNonDefault = true;
1117
}
1118
1119
-
1120
if (!hasNonDefault) {
1121
out << " <default ";
1122
out << *this;
0 commit comments