simplify formatting scripts, add a clang-tidy script, and run clang-tidy
This commit is contained in:
parent
01f5d7c616
commit
8a0a3accee
36 changed files with 288 additions and 244 deletions
|
|
@ -38,8 +38,9 @@
|
|||
namespace TestString {
|
||||
|
||||
int u32scmp(const char32_t *l, const char32_t *r) {
|
||||
for (; *l == *r && *l && *r; l++, r++)
|
||||
for (; *l == *r && *l && *r; l++, r++) {
|
||||
;
|
||||
}
|
||||
return *l - *r;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue