1
0
Fork 0
firefox/tools/clang-tidy/test/bugprone-bool-pointer-implicit-conversion.cpp
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
549 B
C++

// 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;
}