lua-users home
lua-l archive

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


On Mon, Jan 11, 2010 at 16:54, 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 )

Note that it is more correct to use #pragma push and pop to save and
restore state of the warning. It could be off initially.

Alexander.