Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
>
>
Examples of errors detected by the...

Examples of errors detected by the V715 diagnostic

V715. The 'while' operator has empty body. This pattern is suspicious.


Enlightenment

V715 The 'while' operator has empty body. Suspicious pattern detected: 'for (expr) {...} while (0) ;'. e_fm.c 5960


static E_Fm2_Icon *
_e_fm2_typebuf_match(Evas_Object *obj, int next)
{
  ....
  for (x = 0; x < 2; x++)
  {
    ....
  } while (0)
  ;
  ....
}