Skip to content

Commit

Permalink
Make a stylistic fix
Browse files Browse the repository at this point in the history
Align the || operator.
  • Loading branch information
aqrln committed Dec 27, 2016
1 parent 7b9f9e9 commit 7dc745c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jsrs-impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ bool IsWhiteSpaceCharacter(const char* str, std::size_t* size) {
case '\xE2':
if ((str[1] == '\x80' &&
((static_cast<unsigned char>(str[2]) & 0x7F) <= 0xA ||
str[2] == '\xAF')) ||
str[2] == '\xAF')) ||
(str[1] == '\x81' && str[2] == '\x9F')) {
is_multibyte_space = true;
}
Expand Down

0 comments on commit 7dc745c

Please sign in to comment.