Fix GCC 7 warnings

From -Wimplicit-fallthrough which is now enabled by -W.
This commit is contained in:
Olly Betts 2016-12-21 13:05:06 +13:00
commit 7a3cfdb013
3 changed files with 5 additions and 7 deletions

View file

@ -261,10 +261,9 @@ public:
rename = strip(name);
Printf(f_classInit, "ADD_FUNCTION(\"%s\", %s, tFunc(%s), 0);\n", rename, function, description);
break;
case CLASS_CONST:
assert(false); // shouldn't have gotten here for CLASS_CONST nodes
default:
assert(false); // what is this?
case CLASS_CONST: // shouldn't have gotten here for CLASS_CONST nodes
default: // what is this?
assert(false);
}
Delete(rename);
}