Which MySQL plugin shall i use to fix these errors?
#10

Quote:
Originally Posted by TonyNames
Посмотреть сообщение
How come i get those warnings?
Код:
C:\Users\Jakken Koppen\Desktop\RoleplayRoleplay\hrp\gamemodes\rprp.pwn(920) : warning 206: redundant test: constant expression is non-zero
C:\Users\Jakken Koppen\Desktop\RoleplayRoleplay\hrp\gamemodes\rprp.pwn(920) : warning 215: expression has no effect
That means you're (probably indirectly) doing something like
pawn Код:
if(1 == 1)
Which is always true ("non-zero") and thus redundant. Probably hidden in the form of:
pawn Код:
#define ENABLE_SOME_FEATURE 1
if(ENABLE_SOME_FEATURE == 1)
{

}
In which case you should use directives instead (the lines starting with #).
pawn Код:
#if ENABLE_SOME_FEATURE == 1
// code
#endif
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)