silence common.cpp warning (bonus)
This commit is contained in:
parent
d4d45c79a9
commit
8bcdb88e5c
1 changed files with 1 additions and 1 deletions
|
@ -101,8 +101,8 @@ void process_escapes(std::string& input) {
|
||||||
input[output_idx++] = char(val);
|
input[output_idx++] = char(val);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// Intentionally fall through to default.
|
|
||||||
}
|
}
|
||||||
|
// fall through
|
||||||
default: input[output_idx++] = '\\';
|
default: input[output_idx++] = '\\';
|
||||||
input[output_idx++] = input[input_idx]; break;
|
input[output_idx++] = input[input_idx]; break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue