Skip to content

Commit

Permalink
checkstyle pass
Browse files Browse the repository at this point in the history
  • Loading branch information
rakachan committed Aug 31, 2021
1 parent 1684446 commit 60dc715
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,9 @@ static int positiveIntegerStringSize(int x) {
assert x >= 0;
int p = 10;
for (int i = 1; i < 10; i++) {
if (x < p)
if (x < p) {
return i;
}
p = 10 * p;
}
return 10;
Expand Down

0 comments on commit 60dc715

Please sign in to comment.