From 8fb0025d2e1a8955564f0f59be05e5a8422249f0 Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Mon, 3 Mar 2025 17:41:38 +0200 Subject: [PATCH] [#3731] Fix cppcheck --- meson.build | 5 ----- 1 file changed, 5 deletions(-) diff --git a/meson.build b/meson.build index e05060495c..7af094d624 100644 --- a/meson.build +++ b/meson.build @@ -645,7 +645,6 @@ run_target( command: [f'@TOP_SOURCE_DIR@/changelog_unreleased/.add-entry.sh'], ) -# todo: remove redirections if cppcheck.found() run_target( 'cppcheck', @@ -654,7 +653,6 @@ if cppcheck.found() '-I.', '-I./src/lib', '-I./src/bin', - '--error-exitcode=1', '--inline-suppr', '--quiet', '--max-configs=256', @@ -663,9 +661,6 @@ if cppcheck.found() '--xml', '--xml-version=2', '.', - '>', - 'cppcheck-result.xml', - '2>&1', ], ) endif