thradams / cake

Cake a C23 front end and transpiler written in C
http://thradams.com/cake/index.html
GNU General Public License v3.0
553 stars 26 forks source link

missing warning enum item not handled at switch #181

Closed thradams closed 5 months ago

thradams commented 8 months ago
enum E { a, b, c };
void func ( E e )
{
switch(e)
{
case a:
case b:
//case c:;
}
}
thradams commented 5 months ago

done!