From 2abbbd9e703c71b8241b1a7f0be56b46627cffeb Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sun, 6 Jun 2021 17:47:14 -0700 Subject: [PATCH] [build] clang-tidy: Remove bugprone-exception-escape (#3415) This generates warnings for using fmt::print() in main(), which is a case we're okay with. --- .clang-tidy | 1 - 1 file changed, 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 9ba6b95df1..b68e2ed5d9 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -4,7 +4,6 @@ Checks: bugprone-copy-constructor-init, bugprone-dangling-handle, bugprone-dynamic-static-initializers, - bugprone-exception-escape, bugprone-forward-declaration-namespace, bugprone-forwarding-reference-overload, bugprone-inaccurate-erase,