VS2015 compile fix (nw)

This commit is contained in:
Miodrag Milanovic 2016-11-03 11:10:44 +01:00
parent 3ee5564b78
commit deb3c4757b

View File

@ -26,6 +26,10 @@
#ifdef __clang__ #ifdef __clang__
#pragma clang diagnostic ignored "-Wshift-count-overflow" #pragma clang diagnostic ignored "-Wshift-count-overflow"
#endif #endif
#if defined(_MSC_VER)
#pragma warning(disable:4503)
#endif
//************************************************************************** //**************************************************************************
// LUA ENGINE // LUA ENGINE
//************************************************************************** //**************************************************************************