remove unreachable break statements

Found with clang's -Wunreachable-code-break

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2020-04-04 19:42:23 -07:00
committed by ridiculousfish
parent 6ab2da0e25
commit d9ad5a2627
36 changed files with 0 additions and 50 deletions

View File

@@ -869,7 +869,6 @@ end_execution_reason_t parse_execution_context_t::expand_arguments_from_nodes(
}
default: {
DIE("unexpected expand_string() return value");
break;
}
}
@@ -1009,7 +1008,6 @@ end_execution_reason_t parse_execution_context_t::apply_variable_assignments(
default: {
DIE("unexpected expand_string() return value");
break;
}
}
wcstring_list_t vals;