Use Abbreviated Assignment Operator (UAAO)

Description:

Compound assignment operators should be used where possible. If it is not so, the warrning message is generated.

Example:

void oper () {
    int i = 0;
    i = i + 20; 
    i = 30 * i; 
}