| Index: base/json/json_parser.cc
|
| diff --git a/base/json/json_parser.cc b/base/json/json_parser.cc
|
| index f1f43337c408663f68bde52856616a07b259638a..bc64036a67e5015aa79eef9e51c3dec6218b66e8 100644
|
| --- a/base/json/json_parser.cc
|
| +++ b/base/json/json_parser.cc
|
| @@ -405,7 +405,7 @@ void JSONParser::EatWhitespaceAndComments() {
|
| // Don't increment line_number_ twice for "\r\n".
|
| if (!(*pos_ == '\n' && pos_ > start_pos_ && *(pos_ - 1) == '\r'))
|
| ++line_number_;
|
| - // Fall through.
|
| + FALLTHROUGH_INTENDED;
|
| case ' ':
|
| case '\t':
|
| NextChar();
|
|
|