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
If I comment out all except the ones in ifapi_io.c, FAPI still compiles, because other files call wrapper functions defined in ifapi_io.c.
For context, I now have two blank files named dirent.h and poll.h just to satisfy the unnecessary includes on a system that doesn't provide <dirent.h> and <poll.h>. I already have a custom implementation of ifapi_io.c, so the two dummy files would be unnecessary if includes were cleaned up.
This isn't really a big deal to me though. Feel free to close if you don't care :)
The text was updated successfully, but these errors were encountered:
@JuergenReppSIT we might want to consider compiling with include-what-you-use in our ci to ensure include correctness. I might have a look at this once I'm available again.
@JuergenReppSIT we might want to consider compiling with include-what-you-use in our ci to ensure include correctness. I might have a look at this once I'm available again.
Many files in FAPI include
<dirent.h>
and<poll.h>
(and probably other headers) unnecessarily:If I comment out all except the ones in
ifapi_io.c
, FAPI still compiles, because other files call wrapper functions defined inifapi_io.c
.For context, I now have two blank files named
dirent.h
andpoll.h
just to satisfy the unnecessary includes on a system that doesn't provide<dirent.h>
and<poll.h>
. I already have a custom implementation ofifapi_io.c
, so the two dummy files would be unnecessary if includes were cleaned up.This isn't really a big deal to me though. Feel free to close if you don't care :)
The text was updated successfully, but these errors were encountered: