aboutsummaryrefslogtreecommitdiff
path: root/clang-format.sh
blob: e4509e8eb212614f641ea5770370e2b03331ba0b (plain) (blame)
1
2
3
4
5
6
#!/usr/bin/env bash

echo "\n\nFormatting openvic-simulation with clang-format:\n"
find ./src/ -iname *.hpp -o -iname *.cpp | xargs clang-format --verbose -i

exit 0