From 7172ad2ca7b4b889c10e9370855b9ba1220b3618 Mon Sep 17 00:00:00 2001 From: Matthieu Talbot Date: Wed, 17 Oct 2018 17:01:38 +0200 Subject: [PATCH] Fix: use style=file instead of default style. This script was formatting using the default clang-format file. --- clang-format-all | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-format-all b/clang-format-all index 645c3ce..7b3f4f5 100755 --- a/clang-format-all +++ b/clang-format-all @@ -79,6 +79,6 @@ for dir in "$@"; do -o -name '*.h' \ -o -name '*.hh' \ -o -name '*.hpp' \) \ - -exec "${FMT}" -i '{}' \; + -exec "${FMT}" -style=file -i '{}' \; popd &>/dev/null done