We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Gentlemen,
I'm getting an error when I declare a function static inline. Could anyone give me a hand and try telling me why. the following function gives an error:
static inline int test(void) { return 0x10000; }
warning: #260-D: explicit type is missing ("int" assumed) error: #65: expected a ";"
if I remove 'inline' keyword it compiles without errors.
Thanks, Gil