fast_float/format.cmd
2025-05-06 14:26:20 +03:00

7 lines
160 B
Batchfile

@echo off
echo Formatting with config...
for /R ".\" %%f in (*.cpp, *.h, *.c, *.hpp) do (
echo Formatting "%%f"
clang-format -i -style=file "%%f"
)
echo Done!