Desour
|
dd1043c4c0
|
Replace non-leading tabs with spaces, using:
find -type f | # list all regular files
grep -E '\.(h|cpp|mm)$' | # filter for source files
grep -v '/mt_' | # filter out generated files
grep -v '/vendor/' | # and vendored GL
xargs -n 1 -P $(nproc) ./replace_non_leading_tabs.lua # reformat everything
|
2024-03-21 22:08:26 +01:00 |
|
Desour
|
f5c6d3e945
|
Reformat the code, using:
find -type f | # list all regular files
grep -E '\.(h|cpp|mm)$' | # filter for source files
grep -v '/mt_' | # filter out generated files
grep -v '/vendor/' | # and vendored GL
grep -v '/test/image_loader_test.cpp' | # and this file (has giant literals arrays)
xargs -n 1 -P $(nproc) clang-format -i # reformat everything
Co-authored-by: numzero <numzer0@yandex.ru>
|
2024-03-21 22:08:26 +01:00 |
|
sfan5
|
b9e0641203
|
Add unittests for irrString
|
2022-11-11 16:25:49 +01:00 |
|
paradust7
|
51dad49d8b
|
Unit tests for irrArray (#103)
|
2022-05-07 11:21:41 +02:00 |
|