mirror of
https://github.com/eclipse-paho/paho.mqtt.cpp.git
synced 2025-09-15 12:58:39 +08:00
8 lines
128 B
Bash
Executable File
8 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Runs clang format over the whole project tree
|
|
#
|
|
|
|
find . -iname '*.h' -o -iname '*.cpp' | xargs clang-format -i
|
|
|