1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-30 16:20:27 +00:00

8 lines
184 B
Bash
Executable File

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