| |||
| Home > Compiler-specific Features > Keywords and operators > __inline | |||
The __inline keyword suggests to the compiler that
it compiles a C or C++ function inline, if it is sensible to do
so.
The semantics of __inline are exactly the
same as those of the C++ inline keyword.
__inline is a storage class qualifier. It
does not affect the type of a function.
Inlining in the Compiler User Guide.