HELP ME PLEASE!!! how?
#1

warning 203: symbol is never used: "CivPedsFemale"
warning 203: symbol is never used: "CivPedsMale"
Reply
#2

You have Defined them but you didn't used them, clear them out,
CTRL + F > #define CivPedsFemale > Clear it out..!
and same for CivPedsMale..
Reply
#3

if you don't want to clean it out then use
Код:
#pragma unused CivPedsFemale
#pragma unused CivPedsMale
Reply
#4

Quote:
Originally Posted by mineralo
Посмотреть сообщение
if you don't want to clean it out then use
Код:
#pragma unused CivPedsFemale
#pragma unused CivPedsMale
NEVER do this. It's bad practice. All #pragma unused, pragma tabsize's and such are awful.
Reply
#5

Quote:
Originally Posted by DobbysGamertag
Посмотреть сообщение
NEVER do this. It's bad practice. All #pragma unused, pragma tabsize's and such are awful.
this function just avoid warning and nothing else
Reply
#6

Quote:
Originally Posted by DobbysGamertag
Посмотреть сообщение
NEVER do this. It's bad practice. All #pragma unused, pragma tabsize's and such are awful.
There is a time when it is useful actually that is when your using y_inline / y_dialog for instance

pawn Код:
inline Response(pid, dialogid, response, listitem, string:text[])
{
    #pragma unused listitem, dialogid,
Unfortunately I can't think of anything else really.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)