We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
typedefs
Consider the following example, in a file called test.c:
test.c
typedef struct { int x; } T; void f(T *p) { p->x = 2; }
The generated test-exec.c file contains an empty typedef declaration like this:
test-exec.c
typedef
typedef T;
which defaults T to int and leads to great confusion.
T
int
The text was updated successfully, but these errors were encountered:
rbanerjee20
No branches or pull requests
Consider the following example, in a file called
test.c
:The generated
test-exec.c
file contains an emptytypedef
declaration like this:which defaults
T
toint
and leads to great confusion.The text was updated successfully, but these errors were encountered: