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).
Showing
Please register or sign in to comment
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).