Cleanup line endings (#245)

The exact commands to make this commit were:

git reset --hard origin/master
find -type f |  # list all regular files
  grep -E '\.(h|cpp|fsh|vsh|mm)|LICENSE$' |  # filter for text files
  xargs -n 1 -P $(nproc) sed -i 's:\s*$::'  # for each file, trim trailing whitespace including the CR
git commit -a
This commit is contained in:
Vitaliy 2023-10-03 21:37:00 +03:00 committed by GitHub
parent ea1b58387e
commit 9954667c45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
303 changed files with 99367 additions and 99367 deletions