REDU15-Unneeded boolean comparisons

Top  Previous  Next

 

Unneeded boolean comparisons (REDU15)

 

This list contains locations with statements like

 

if bReady = true then

 

This could be shorter and better written as

 

if bReady then

 

 

See also:

 

Reductions