mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-08 01:36:49 +08:00
7 lines
160 B
Batchfile
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! |