Open fay59 opened 7 years ago
Fcd crashes when it tries to parse a C header that contains a function prototype that has no parameters, like int foo();. The proper C syntax to mean that foo takes no parameter is int foo(void);, but this probably should be fixed.
int foo();
foo
int foo(void);
These repro steps are inaccurate. I should take better note next time I see it.
Fcd crashes when it tries to parse a C header that contains a function prototype that has no parameters, like
int foo();
. The proper C syntax to mean thatfoo
takes no parameter isint foo(void);
, but this probably should be fixed.