Closed MariusBgm closed 5 months ago
Run clang-format on all C and C++ files
Used the following script:
find SilKit/ Demos/ Utilities/ \ -type f -iname *.cpp -o -iname *.hpp -o -iname *.c -o -iname *.ipp \ -o -iname *.h | while read fname; do clang-format-18 -i --style=file $fname; done
[UPDATE] Fixed clang-format version to 16, for compat reasons
Reformatted with
$ clang-format-18 --version Ubuntu clang-format version 18.1.8
Subject
Run clang-format on all C and C++ files
Description
Used the following script:
[UPDATE] Fixed clang-format version to 16, for compat reasons
Instructions for review / testing
Developer checklist (address before review)