From 5b42bda4eb4a78a65da6734f0f477a4b209a136d Mon Sep 17 00:00:00 2001 From: Roman971 Date: Mon, 23 Mar 2020 23:47:49 +0100 Subject: [PATCH] Fix format.sh to run clang-tidy inside NON_MATCHING functions --- format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.sh b/format.sh index 18a1cae68f..9967cc6f5d 100755 --- a/format.sh +++ b/format.sh @@ -2,7 +2,7 @@ FORMAT_OPTS="-i -style=file" TIDY_OPTS="-p . --fix --fix-errors" -COMPILER_OPTS="-fno-builtin -std=gnu90 -Iinclude -Isrc -D_LANGUAGE_C" +COMPILER_OPTS="-fno-builtin -std=gnu90 -Iinclude -Isrc -D_LANGUAGE_C -DNON_MATCHING" shopt -s globstar