This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 510
Unused parameters warning #581
Comments
Are these parameters completely unused in ecl or only in your particular use case? |
These following functions have unused parameters:
I am not building with cmake, we use our own Makefile system. |
Let's just update them. I'll fix the PX4/Firmware usage. |
You can then also remove the |
This was referenced Mar 5, 2019
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We now need to compile with
-Wno-unused-parameter
in order to not get any warnings due to theestimator_interface.h
having functions with unused parameters. Wouldn't it be nicer to define the__attribute__((unused))
for these parameters specifically?This way we don't need to compile the whole autopilot project with the
unused-parameter
flag.The text was updated successfully, but these errors were encountered: