apply clang-format (on Mac, slightly different than running it on Windows)

This commit is contained in:
Erwin Coumans
2018-09-30 11:43:57 -07:00
parent 5bcd43711a
commit 42ae4e81a8
15 changed files with 87 additions and 117 deletions

View File

@@ -576,7 +576,7 @@ init: /* using goto's to optimize tail recursion */
}
case '+': /* 1 or more repetitions */
s++; /* 1 match already done */
/* go through */
/* go through */
case '*': /* 0 or more repetitions */
s = max_expand(ms, s, p, ep);
break;