From 5b96fd53f5b925640b5c232c2f5b902e65643738 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Fri, 17 Dec 2021 12:12:24 +0100 Subject: [PATCH] [xcode] Enabled additional Static Analyzer warnings Signed-off-by: Alexander Borsuk --- xcode/common.xcconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xcode/common.xcconfig b/xcode/common.xcconfig index 4e4b8eafda..3ade69c625 100644 --- a/xcode/common.xcconfig +++ b/xcode/common.xcconfig @@ -93,3 +93,8 @@ TARGETED_DEVICE_FAMILY = 1,2 VALID_ARCHS = arm64 VALID_ARCHS[sdk=iphonesimulator*] = x86_64 arm64 VALID_ARCHS[sdk=macosx*] = x86_64 arm64 + +// Static analyzer options. +CLANG_ANALYZER_GCD_PERFORMANCE = YES +CLANG_TIDY_BUGPRONE_REDUNDANT_BRANCH_CONDITION = YES +CLANG_TIDY_MISC_REDUNDANT_EXPRESSION = YES