Posts: 718
Threads: 79
Joined: Aug 2009
Reputation:
0
(From my own explanation)
Sometimes when you make a snippet of code and use a word like "params" you have to "new params;" or what ever. Theres some code that has "params" in it that you need to make a snipper work, but it never uses the word "params" so you use "#pragma unused params" so that you dont get any errors or warnings about that word when compiling...
Someone please correct me if i am wrong
Posts: 30
Threads: 0
Joined: Aug 2010
Reputation:
0
It means its saying:
"I'm not going to use the parameters in the command so ignore any warnings this generates and continue"
If not this might get a warning saying the params is never used.
Edit: Why me so slow at posting :/