Replies: 1 comment
|
To ignore unused variable warning(s) you can either:
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
This trick is used to suppress compiler warning about an unused variable. For example:
(void)x;will suppress compiler warning about the unused variablex.How could I translate code using this trick to Adept? Thank you.
All reactions