Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnkit Meel <ankitm>2020-11-17 14:40:03 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2020-11-17 15:03:25 +0300
commit88de58fd1af9ffb1c6afcc53cf6279aadc51f58c (patch)
tree522df7c86107edbabb1631d2e12014bafdc66c4b /.clang-tidy
parent417224a31bb006ac59a7572809cc5976de0eb619 (diff)
Clang-tidy, fix bugprone-exception-escape.
Remove redundant call to `ofstream::close()` from `~PSStrokeRenderer` and `~TextStrokeRenderer`. ofstream will be destructed automatically. - For `~Depsgraph`, `std::function`'s constructor can throw. - Passing throwing statements in the lambda will not be detected by clang-tidy. Fix these issues by using lambda as function argument. Reviewed By: sergey, sybren Differential Revision: https://developer.blender.org/D9497
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy1
1 files changed, 0 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 10738f574d6..49b238d8708 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -29,7 +29,6 @@ Checks: >
-bugprone-sizeof-expression,
-bugprone-integer-division,
- -bugprone-exception-escape,
-bugprone-redundant-branch-condition,
modernize-*,