Pragma warnings don't work?

Started by bitcoin, October 23, 2019, 09:58:40 AM

Previous topic - Next topic

bitcoin

Hello
In VC++ I can disable some kind of warnings with #pragma warnings disable...
Are there such method in Pelles C?

TimoVJL

help file is a your friend:
#pragma warn( { push | pop | { enable | disable }[:] number ... } )  [2.90]

commandline:
The /Wd option disables the compiler warning specified by number. The warning number is displayed in the warning message from the compiler as #number
May the source be with you

bitcoin