Controls the issuing of warnings for functions the compiler cannot inline.
#pragma warn_notinlined on | off | reset
An inline function is indicated by the inline keyword or is implicitly inline because it is defined, rather than just declared, within its class definition. If you enable this pragma, the compiler issues a warning for non-inlined inline function calls. For more information about this warning, see “inline Functions That Are Not Inlined”.
This pragma corresponds to the Non-Inlined Functions setting . To check this setting, use __option (warn_notinlined), described in Checking Settings. The default setting is off.