format-code.sh 153 B

1234567
  1. cd ..
  2. FILES=$(find include src test -regex ".*\.[ch]pp$")
  3. clang-format -style=Google -i $FILES
  4. # insert newline at end of file
  5. sed -i -e '$a\' $FILES