1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-31 17:06:41 +00:00

Remove -bugprone-narrowing-conversions from clang-tidy

This commit is contained in:
jvoisin 2022-01-04 19:32:49 +00:00 committed by psi29a
parent b6572fbe42
commit 40faf54250

View file

@ -46,7 +46,7 @@ fi
if [[ $CI_CLANG_TIDY ]]; then
CMAKE_CONF_OPTS+=(
-DCMAKE_CXX_CLANG_TIDY='clang-tidy;-checks=-*,boost-*,clang-analyzer-*,concurrency-*,performance-*,-header-filter=.*,bugprone-*,misc-definitions-in-headers,misc-misplaced-const,misc-redundant-expression'
-DCMAKE_CXX_CLANG_TIDY='clang-tidy;-checks=-*,boost-*,clang-analyzer-*,concurrency-*,performance-*,-header-filter=.*,bugprone-*,misc-definitions-in-headers,misc-misplaced-const,misc-redundant-expression,-bugprone-narrowing-conversions'
)
fi