mirror of
https://github.com/holub/mame
synced 2025-07-07 02:50:50 +03:00
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:
parent
b4becee591
commit
b987b6eb31
@ -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
|
||||
//**************************************************************************
|
||||
|
@ -12,6 +12,11 @@
|
||||
#include "luaengine.ipp"
|
||||
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic ignored "-Wshift-count-overflow"
|
||||
#endif
|
||||
|
||||
|
||||
namespace {
|
||||
|
||||
//-------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user