You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to get compilation to issue fewer warnings without disabling the warnings themselves, we have hidden all unused parameters behind a macro "VORB_UNUSED". This is a temporary measure and we want to review each location VORB_UNUSED is used, and follow the sequence:
Do we want to reimplement/revise the system in which the function resides?
If yes, do so or go to step 3.
Is the parameter unused in all compilation and logic paths of the code?
If yes, make the parameter anonymous;
If no, mark the parameter with VORB_MAYBE_UNUSED;
In either case remove the VORB_USED tag.
Find the next VORB_UNUSED-tagged parameter you want to tackle and go to step 1.
The text was updated successfully, but these errors were encountered:
In order to get compilation to issue fewer warnings without disabling the warnings themselves, we have hidden all unused parameters behind a macro "VORB_UNUSED". This is a temporary measure and we want to review each location VORB_UNUSED is used, and follow the sequence:
The text was updated successfully, but these errors were encountered: