From 21d0088b95af050929700ac4408fcb021b40521a Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 10 Sep 2024 14:41:18 +0200 Subject: [PATCH] [clang-tidy] disable performance-avoid-endl this warning is not required in our case as we do not have code that requires high performance utilizing std::endl (output to std::cout or std::cerr) --- .clang-tidy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index fa793d68c..e70f18fda 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -62,7 +62,8 @@ Checks: > -readability-magic-numbers, -readability-qualified-auto, -readability-uppercase-literal-suffix, - -performance-no-int-to-ptr + -performance-no-int-to-ptr, + -performance-avoid-endl WarningsAsErrors: '' HeaderFilterRegex: '' FormatStyle: file