Commit dfce1f9e authored by Alvaro Herrera's avatar Alvaro Herrera

Remove useless default clause in switch

The switch covers all values of the enum driver variable, so having a
default: clause is useless, even if it's only to do Assert(false).
parent a5ab8928
......@@ -836,10 +836,6 @@ gen_partprune_steps_internal(GeneratePruningStepsContext *context,
case PARTCLAUSE_UNSUPPORTED:
/* This clause cannot be used for pruning. */
break;
default:
Assert(false);
break;
}
/* done; go check the next clause. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment