Hi, Is the __inline keyword supported in C166 V4.27 ? If so can anybody point me in the direction of any documentation ? My code complies with this keyword in but,on looking at the generated code, it appears to do nothing. Cheers Elliot
Looks like the only documentation is Release Notes for the 4.25 release. Of course, the compiler has to see the defenition of the function to be inlined before it encounters a call, which means they have to be in the same translation unit (.C file). - mike