Source code

Revision control

Copy as Markdown

Other Tools

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??
return pointer_to_bool;
}