irrlicht/source
Desour e7bbbf9e30 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 17:31:35 +01:00
..
Irrlicht Replace non-leading tabs with spaces, using: 2024-03-21 17:31:35 +01:00