Files

9 lines
228 B
Bash
Raw Permalink Normal View History

2026-07-23 07:51:23 +00:00
#!/bin/bash
set -euo pipefail
echo "=== Clang Format ==="
find src include tests examples -name "*.cpp" -o -name "*.h" | while read f; do
clang-format -i "$f" 2>/dev/null && echo " formatted: $f" || true
done
echo "Done."