brintos

brintos / llvm-project-archived public Read only

0
0
Text · 343 B · e42ee5f Raw
17 lines · plain
1.. title:: clang-tidy - bugprone-bool-pointer-implicit-conversion2 3bugprone-bool-pointer-implicit-conversion4=========================================5 6Checks for conditions based on implicit conversion from a ``bool`` pointer to7``bool``.8 9Example:10 11.. code-block:: c++12 13  bool *p;14  if (p) {15    // Never used in a pointer-specific way.16  }17