01.07.2014, 10:14
this warnig is caused when a symbol is not used anywhere
for example
in the above example we have declared variable "a" but have not use it anywhere so it will give this warning
you could just simply ignore it
for example
pawn Код:
new a,b,c;
b=5+10;
c=b+5;
you could just simply ignore it