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 408bf4a commit bc10f6fCopy full SHA for bc10f6f
include/swift/Sema/ConstraintSystem.h
@@ -1197,11 +1197,10 @@ struct Score {
1197
for (unsigned int i = 0; i < NumScoreKinds; ++i) {
1198
if (Data[i] != 0) {
1199
out << " [component: ";
1200
- out << "#";
1201
- out << std::to_string(i);
1202
- out << " ";
1203
out << getNameFor(ScoreKind(i));
1204
- out << "(s), value: ";
+ out << "(s), impact: ";
+ out << std::to_string(NumScoreKinds - i);
+ out << ", value: ";
1205
out << std::to_string(Data[i]);
1206
out << "]";
1207
hasNonDefault = true;
0 commit comments