Include libs in FloatImg.h #3
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
FloatImg.h uses types like int32_t that may have not been declared in .c files and so rely on the import order : moving FloatImg.h at the top of C files breaks the build.
Adding
At the top of FloatImg.h fixes this problem.