aboutsummaryrefslogtreecommitdiff
path: root/clang-format.sh
blob: 3af256edf932660e8677442f7d6f6be1ec7b05ee (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