lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]



Roberto Ierusalimschy wrote:
(Any compiler should provide a standard (and documented) way to silence
each of its warnings.)

-- Roberto

MS VCs (all of them I think use
e.g.
#pragma warning( disable : 4514 )

#pragma warning( disable : errorlist  ... )

I am not sure about gcc.

However one of the rules of #pragma methinks is that compilers are supposed to ignore it if they do not understand it.

DB