-
Notifications
You must be signed in to change notification settings - Fork 105
Open
Description
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.
Metadata
Metadata
Assignees
Labels
No labels