From 8234c12ef69dea9c8ccb6a352d5c88433e6f2f5f Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Thu, 19 Dec 2019 15:48:12 +0100 Subject: [PATCH] +clang-tidy-filter --- bin/clang-tidy-filter | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bin/clang-tidy-filter diff --git a/bin/clang-tidy-filter b/bin/clang-tidy-filter new file mode 100755 index 0000000..a8ed2eb --- /dev/null +++ b/bin/clang-tidy-filter @@ -0,0 +1,6 @@ +#! /usr/bin/perl -n +next if /^\d+ warnings? generated[.]$/; +next if /^Suppressed \d+ warning/; +next if /^Use -header-filter=[.][*] to display errors from all non-system headers[.] Use -system-headers to display errors from system headers as well[.]$/; +next if /^clang-tidy /; +print; -- 1.8.3.1