From b4dca4ea2ce8296f07b2905aeaff7d3aeaa73054 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 5 Feb 2021 14:06:43 +0100 Subject: Cleanup: Use raw string literal Resolves modernize-raw-string-literal Clang-Tidy warning The way warning works is it suggests to use raw literal when overhead of having escape characters is higher than the overhead of having raw literal syntax (talking about code size overhead). This means that the warning will not trigger for "foo\"bar". Differential Revision: https://developer.blender.org/D10322 --- .clang-tidy | 1 - 1 file changed, 1 deletion(-) (limited to '.clang-tidy') diff --git a/.clang-tidy b/.clang-tidy index 0192a8b41ef..b51555b55dd 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -39,7 +39,6 @@ Checks: > -modernize-use-nodiscard, -modernize-loop-convert, -modernize-pass-by-value, - -modernize-raw-string-literal, WarningsAsErrors: '*' CheckOptions: -- cgit v1.2.3