clang-format the universe

find . -name '*.c' -o -name '*.cpp' -o -name '*.cc'-o \
       -name '*.h' -o -name '*.hpp' \
  | xargs clang-format --style=file -i

Diffs=
c885b0ffd clang-format the universe
This commit is contained in:
csmartdalton
2022-07-08 17:01:01 +00:00
parent cc2c765a22
commit 4d41d33e3b
74 changed files with 800 additions and 787 deletions

View File

@@ -55,9 +55,7 @@ public:
printf("%c\n", c);
}
void add(const char key[], int value) {
this->add(key, std::to_string(value).c_str());
}
void add(const char key[], int value) { this->add(key, std::to_string(value).c_str()); }
};
//////////////////////////////////////////////////