From b8377b1c71893777798d5e71b92afb3c1f79412e Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Sun, 16 Feb 2025 13:19:31 +0100 Subject: [PATCH] Forbid C-style casts using clang-tidy resolves https://github.com/learning-process/parallel_programming_course/issues/338 --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index 36ab3c870..7c637d20f 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -2,6 +2,7 @@ Checks: > bugprone-*, clang-diagnostic-*, cppcoreguidelines-init-variables, + cppcoreguidelines-pro-type-cstyle-cast, llvm-include-order, llvm-namespace-comment, misc-*,