misc-redundant-expression

检测通常是由于复制粘贴错误导致的冗余表达式。

根据操作符,表达式可能是

示例

((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