Controls the generation of inline functions.
#pragma dont_inline on | off | reset
If you enable this pragma, the compiler does not inline any function calls, even those declared with the inline keyword or within a class declaration. Also, it does not automatically inline functions, regardless of the setting of the auto_inline pragma, described in auto_inline. If you disable this pragma, the compiler expands all inline function calls, within the limits you set through other inlining-related pragmas.