remove unnecessary 'true' and 'false' comparisons in boolean expressions
The change from isc_boolean_t
to bool
left some conditions behind with expressions like if (x == true)
. We can clean them up with coccinelle.
Edited by Evan Hunt
The change from isc_boolean_t
to bool
left some conditions behind with expressions like if (x == true)
. We can clean them up with coccinelle.