clang-tidy: remove else after break and continue

This commit is contained in:
Daniel Pfeifer
2017-04-21 10:06:12 +02:00
parent 1b0c7bca5e
commit b26577c92a
14 changed files with 80 additions and 85 deletions

View File

@@ -613,8 +613,8 @@ bool cmFileCommand::HandleStringsCommand(std::vector<std::string> const& args)
continue;
}
else if ((c >= 0x20 && c < 0x7F) || c == '\t' ||
(c == '\n' && newline_consume)) {
if ((c >= 0x20 && c < 0x7F) || c == '\t' ||
(c == '\n' && newline_consume)) {
// This is an ASCII character that may be part of a string.
// Cast added to avoid compiler warning. Cast is ok because
// c is guaranteed to fit in char by the above if...