luaengine.cpp: Moved clang warning suppression to the right file, disabled MSVC C4503 suppression for now, will see which files need it for sol3

This commit is contained in:
Vas Crabb 2020-11-16 23:53:19 +11:00
parent b4becee591
commit b987b6eb31
2 changed files with 5 additions and 7 deletions

View File

@ -32,13 +32,6 @@
#include <thread>
#ifdef __clang__
#pragma clang diagnostic ignored "-Wshift-count-overflow"
#endif
#if defined(_MSC_VER)
#pragma warning(disable:4503)
#endif
//**************************************************************************
// LUA ENGINE
//**************************************************************************

View File

@ -12,6 +12,11 @@
#include "luaengine.ipp"
#ifdef __clang__
#pragma clang diagnostic ignored "-Wshift-count-overflow"
#endif
namespace {
//-------------------------------------------------