From 52e9ddc0380d91e19eac92c5c5d91ede0578a335 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Sun, 17 Aug 2025 16:29:41 +0700 Subject: [PATCH] [ios] Enable clang-format for Obj C sources Signed-off-by: Konstantin Pastbin --- tools/unix/clang-format.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/unix/clang-format.sh b/tools/unix/clang-format.sh index d687778d0..9c373b85e 100755 --- a/tools/unix/clang-format.sh +++ b/tools/unix/clang-format.sh @@ -9,8 +9,8 @@ XARGS_COMMAND='xargs -n1 -0 -P0 clang-format -i' find android/{app,sdk}/src -type f -name '*.java' -print0 | $XARGS_COMMAND find android/sdk/src/main/cpp -type f -name '*.[hc]pp' -print0 | $XARGS_COMMAND -# TODO: iOS -# find iphone -type f -name '*.[hc]pp' -o -name '*.[hm]' -o -name '*.mm' -print0 | $XARGS_COMMAND +# iOS +find iphone -type f -name '*.[hc]pp' -o -name '*.[hm]' -o -name '*.mm' -print0 | $XARGS_COMMAND # Core/C++ find dev_sandbox generator libs qt tools -type f -name '*.[hc]pp' -print0 | $XARGS_COMMAND