aboutsummaryrefslogtreecommitdiff
path: root/tools/format
blob: 867f99d19fc719d72740f7f395f1e24330544bd3 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

find src -name "*.h"  -exec clang-format -i {} \;
find src -name "*.cc"  -exec clang-format -i {} \;
find samples -name "*.h"  -exec clang-format -i {} \;
find samples -name "*.cc"  -exec clang-format -i {} \;
find include -name "*.h"  -exec clang-format -i {} \;