| Index: preparser/preparser-process.cc
|
| ===================================================================
|
| --- preparser/preparser-process.cc (revision 8618)
|
| +++ preparser/preparser-process.cc (working copy)
|
| @@ -290,12 +290,12 @@
|
| arg_index++;
|
| } while (argc > arg_index && IsFlag(argv[arg_index]));
|
| if (argc > arg_index) {
|
| - expects.beg_pos = atoi(argv[arg_index]);
|
| + expects.beg_pos = atoi(argv[arg_index]); // NOLINT
|
| do {
|
| arg_index++;
|
| } while (argc > arg_index && IsFlag(argv[arg_index]));
|
| if (argc > arg_index) {
|
| - expects.end_pos = atoi(argv[arg_index]);
|
| + expects.end_pos = atoi(argv[arg_index]); // NOLINT
|
| }
|
| }
|
| }
|
|
|