Unicorn with delicious cookie
Мы используем куки, чтобы пользоваться сайтом было удобно.
Хорошо
to the top
>
>
>
Примеры ошибок, обнаруженных с...

Примеры ошибок, обнаруженных с помощью диагностики V715

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)
  ;
  ....
}