Fix else code style

This commit is contained in:
Arsen Gasparyan
2015-12-22 11:13:19 +03:00
parent 0dd03ba5c5
commit be738abb7c
5 changed files with 11 additions and 22 deletions

View File

@@ -207,8 +207,7 @@ void Output::scalarString(StringRef &S, bool MustQuote) {
// Convert the current character into hexadecimal digits.
Stream << llvm::hexdigit((c >> 4) & 0xF);
Stream << llvm::hexdigit((c >> 0) & 0xF);
}
else {
} else {
// This isn't a control character, so we don't need to escape it.
// As a result, emit it directly; if it's part of a multi-byte UTF8
// representation, all bytes will be emitted in this fashion.