ableC icon indicating copy to clipboard operation
ableC copied to clipboard

Special specifiers on function prototypes are discarded

Open krame505 opened this issue 7 years ago • 0 comments

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.

krame505 avatar Mar 06 '18 01:03 krame505