Controls the generation of inline functions.
Compatibility:This pragma is compatible with the following platform targets:
|
Embedded 68K
|
#pragma dont_inline on | off | reset
Remarks:
If the pragma dont_inline is on, the compiler doesn't inline any function calls, even functions declared with the inline keyword or member functions defined within a class declaration. Also, it doesn't automatically inline functions, regardless of the setting of the auto_inline pragma, described in "auto_inline." If this option is off, the compiler expands all inline function calls.
This pragma corresponds to the Don't Inline option of the Inlining menu the C/C++ Language Panel. To check whether this option is on, use __option (dont_inline), described in "Checking Options."