From 5731ec30f0596fefede4321e9883043aa7db60ba Mon Sep 17 00:00:00 2001 From: Regina Pfeifer Date: Mon, 19 Nov 2018 18:10:40 +0100 Subject: clang-tidy: fix warnings from version 7 Fix some warnings that are new since clang-tidy version 4, and update `.clang-tidy` to suppress the rest. --- .clang-tidy | 3 +++ 1 file changed, 3 insertions(+) (limited to '.clang-tidy') diff --git a/.clang-tidy b/.clang-tidy index 8d79b0c5d4..cec7d03a5b 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -21,15 +21,18 @@ modernize-*,\ -modernize-use-using,\ performance-*,\ -performance-inefficient-string-concatenation,\ +-performance-inefficient-vector-operation,\ readability-*,\ -readability-function-size,\ -readability-identifier-naming,\ -readability-implicit-bool-cast,\ +-readability-implicit-bool-conversion,\ -readability-inconsistent-declaration-parameter-name,\ -readability-named-parameter,\ -readability-redundant-declaration,\ -readability-redundant-member-init,\ -readability-simplify-boolean-expr,\ +-readability-static-accessed-through-instance,\ " HeaderFilterRegex: 'Source/cm[^/]*\.(h|hxx|cxx)$' ... -- cgit v1.2.1