parallel-rsp/format_all.sh
Hans-Kristian Arntzen b7d23a9d07 Run clang format.
2020-01-29 21:39:26 +01:00

8 lines
156 B
Bash
Executable File

#!/bin/bash
for file in arch/*/*/*.{cpp,h} *.{cpp,hpp,h} rsp/*.{cpp,h}
do
echo "Formatting file: $file ..."
clang-format -style=file -i $file
done