Hi
I want to disable a specific compiler warning for a code section. I tried the pragma warning
#pragma warning disable = 138
which will work, but I am missing a possibility to enable the compiler warning after the specific code section. Any idea to enable the warning after using the disable pragma?
Hi, it seems like there is no
#pragma warning enable = 128
(http://www.keil.com/support/man/docs/c166/c166_warning.htm)
But you may try to lower the warning level for the specific warning.