ableC
ableC copied to clipboard
Special specifiers on function prototypes are discarded
For example
inline int foo(int);
translates into
signed int foo(signed int );
discarding the inline special specifier. As far as I can tell the abstract syntax has no way of representing special specifiers on function prototypes? Not really sure of the best way to fix this.