Minimum code:
// foo.h
typedef struct foo_s foo_t;
struct foo_s {
foo_t* next;
};
iwyu
insists I forward declare struct foo_s
before I typedef
it to foo_t
.
Output:
$ iwyu -c foo.h
foo.h should add these lines:
struct foo_s;
foo.h should remove these lines:
The full include-list for foo.h:
struct foo_s;
---
This is true across different versions of iwyu
, including newer versions with -Xiwyu --no_fwd_decls
added.
Is this a mistake in iwyu
or does the C
standard want me to define the type before the typedef
?
It does not. The standard verbiage is as follows
So your original pair of declarations has well-defined behavior. The declaration for the structure is implicitly added into the translation unit at the point you define the type alias, and then completed afterward. The fact that the tool does not allow it may be due to a bug, a limitation of the tool, or perhaps an attempt to enforce a particular coding style.
There is one point in favor of the style that the tool may try to enforce, and it has to do with the C notion of scope. Specifically, function parameter list scope. As an example, see this Q&A and refer to this short example
It so happens that the first declaration of
bar
is declared with a type that is unique to its parameter list. The initial declaration ofstruct foo
is not the same type as the one used in the later function definition. As such, the code will not compile by a conforming C compiler. Declaring the structure on its own line ahead of the first function declaration fixes this problem.