lint: missing break in switch statement

This commit is contained in:
Kurtis Rader
2016-11-01 22:36:30 -07:00
parent f6047f02d6
commit 4f4d34e664
13 changed files with 61 additions and 31 deletions

View File

@@ -870,7 +870,7 @@ wcstring block_t::description() const {
}
default: {
DIE("unhandled block_type_t constant");
abort();
break;
}
}