From 7c60c990fbed62aab1369c0e4462c4081dc3cfeb Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Thu, 10 Oct 2019 14:33:47 +0100 Subject: COMPMID-2486: Remove disabled compiler warnings Removed the following flags: -Wno-format-nonliteral: This had a side effect on Error.h that resulted in rewriting most of the macros. Since I was at it I removed all the va_args in order to comply with DCL50-CPP. -Wno-deprecated-increment-bool -Wno-vla-extension -Wno-mismatched-tags -Wno-redundant-move Change-Id: I7c593854ecc3b7d595b8edcbd6a86d3c2563c6bd Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/2069 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Georgios Pinitas --- scripts/clang_tidy_rules.py | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/clang_tidy_rules.py b/scripts/clang_tidy_rules.py index 7393df2708..9d13ebb86b 100755 --- a/scripts/clang_tidy_rules.py +++ b/scripts/clang_tidy_rules.py @@ -129,6 +129,7 @@ def filter_clang_tidy_lines( lines ): ("BOOST_TEST" in lines[i + 1] or "BOOST_FAIL" in lines[i + 1] or "BOOST_CHECK_THROW" in lines[i + 1] or + "ARM_COMPUTE_ERROR_VAR" in lines[i + 1] or "ARM_COMPUTE_RETURN_ON" in lines[i + 1] or "syscall" in lines[i + 1])): print_context=False -- cgit v1.2.1