From: Jan Kratochvil Date: Thu, 19 Dec 2019 14:48:12 +0000 (+0100) Subject: +clang-tidy-filter X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=commitdiff_plain;h=8234c12ef69dea9c8ccb6a352d5c88433e6f2f5f +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;