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
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: