cake icon indicating copy to clipboard operation
cake copied to clipboard

missing warning enum item not handled at switch

Open thradams opened this issue 1 year ago • 0 comments

enum E { a, b, c };
void func ( E e )
{
switch(e)
{
case a:
case b:
//case c:;
}
}

thradams avatar Mar 13 '24 19:03 thradams