bugprone-bool-pointer-implicit-conversion

检查基于从 bool 指针到 bool 的隐式转换的条件。

示例

bool *p;
if (p) {
  // Never used in a pointer-specific way.
}