Saves and restores pragma settings.
#pragma push
#pragma pop
The pragma push saves all the current pragma settings. The pragma pop restores all the pragma settings that resulted from the last push pragma. For example, see push and pop example.
#pragma ANSI_strict on #pragma push /* Saves all compiler settings. */ #pragma ANSI_strict off #pragma pop /* Restores ANSI_strict to on. */
This pragma does not correspond to any panel setting. By default, this pragma is off .