lua-users home
lua-l archive

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


On 2010-01-11, David Burgess <dabsoft@gmail.com> wrote:
> You can do it individually.
>  At one stage my coding style was to wrap spurious warnings like:
>
>  #pragma warning( disable : 4514 )
>
>  <code ... />
>
>  #pragma warning( enable : 4514 )
>

Are you assuming here that warning ID 4514 is consistent between all
the different compilers used to build Lua?

--Leo--