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 c85deb1 commit ded44b4Copy full SHA for ded44b4
lib/Sema/CSStep.cpp
@@ -481,8 +481,8 @@ bool DisjunctionStep::shouldSkip(const DisjunctionChoice &choice) const {
481
auto &ctx = CS.getASTContext();
482
483
bool attemptFixes = CS.shouldAttemptFixes();
484
- // Enable "fixed" overload choices in "diagnostic" mode.
485
- if (!(attemptFixes && choice.hasFix()) && choice.isDisabled()) {
+ // Enable all disabled choices in "diagnostic" mode.
+ if (!attemptFixes && choice.isDisabled()) {
486
if (isDebugMode()) {
487
auto &log = getDebugLogger();
488
log << "(skipping ";
0 commit comments