misc-redundant-expression¶
检测通常是由于复制粘贴错误导致的冗余表达式。
根据操作符,表达式可能是
冗余的,
始终为
true
,始终为
false
,始终为常数(零或一)。
示例
((x+1) | (x+1)) // (x+1) is redundant
(p->x == p->x) // always true
(p->x < p->x) // always false
(speed - speed + 1 == 12) // speed - speed is always zero