Replies: 1 comment
-
To ignore unused variable warning(s) you can either:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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.
Beta Was this translation helpful? Give feedback.
All reactions