aboutsummaryrefslogtreecommitdiff
path: root/scripts/check_clang-tidy.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check_clang-tidy.py')
-rwxr-xr-xscripts/check_clang-tidy.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/check_clang-tidy.py b/scripts/check_clang-tidy.py
index 30bfca133d..e95204610b 100755
--- a/scripts/check_clang-tidy.py
+++ b/scripts/check_clang-tidy.py
@@ -20,6 +20,7 @@ if __name__ == "__main__":
if (("Utils.cpp" in line and "'arm_compute_version.embed' file not found" in line) or
("cl2.hpp" in line and "cast from pointer to smaller type 'cl_context_properties' (aka 'int') loses information" in line) or
("arm_fp16.h" in line) or
+ ("omp.h" in line) or
("memory" in line and "cast from pointer to smaller type 'uintptr_t' (aka 'unsigned int') loses information" in line) or
("NEMath.inl" in line and "statement expression not allowed at file scope" in line) or
"3rdparty" in line):
@@ -67,10 +68,6 @@ if __name__ == "__main__":
"syscall" in lines[i + 1])):
continue
- if "use '= default' to define a trivial default constructor" in line:
- if i + 1 < len(lines) and "BENCHMARK" in lines[i + 1]:
- continue
-
failed = True
print(line)