mirror of
https://github.com/boostorg/openmethod.git
synced 2026-01-19 04:22:12 +00:00
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname $0)/.."
|
|
|
|
srcs=$(find include examples test \
|
|
-name '*.?pp' | grep -v cmake_fetchcontent | grep -v /CMakeFiles)
|
|
|
|
clang-format -i --verbose $srcs
|