cake icon indicating copy to clipboard operation
cake copied to clipboard

missing warning - bool like used in switch

Open thradams opened this issue 11 months ago • 0 comments

int main()
{
int i = 0;
switch(!i) { 
case 1:
break;
default:
break;
}
}

thradams avatar Mar 13 '24 19:03 thradams