Operator '?:' Should Not Be Used (OSNBU)

Description:

The operator '?:' makes the code harder to read than the alternative form with an if-statement.

Example:

void func(int a) {
    int b =  (a == 10) ? 20 : 30; 
}