blob: 602fa9a578b4dd597cf06f6dd2a4966d4ec528e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// https://clang.llvm.org/extra/clang-tidy/checks/bugprone-bool-pointer-implicit-conversion.html
bool test(bool* pointer_to_bool, int* pointer_to_int)
{
if (pointer_to_bool) { // warning for pointer to bool
}
if (pointer_to_int) { // no warning for pointer to int
}
if (!pointer_to_bool) { // no warning, but why not??
}
if (pointer_to_bool != nullptr) { // no warning for nullptr comparison
}
// no warning on return, but why not??
// clang-tidy bug: https://bugs.llvm.org/show_bug.cgi?id=38060
return pointer_to_bool;
}
|