"compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp" did not exist on "60251a5eb7efa791a89fc3c2d5c3b32d04586289"
[clang-tidy] Add a checker for implicit bool conversion of a bool*.
The goal is to find code like the example below, which is likely a typo where someone meant to write "if (*b)". bool *b = SomeFunction(); if (b) { // b never dereferenced } This checker naturally has a relatively high false positive rate so it applies some heuristics to avoid cases where the pointer is checked for nullptr before being written. Differential Revision: http://reviews.llvm.org/D4458 llvm-svn: 212797
Loading
Please register or sign in to comment