diff options
| author | 2017-05-15 18:47:00 +0200 | |
|---|---|---|
| committer | 2017-05-15 18:47:53 +0200 | |
| commit | f3b954ba6e49a8aaec8c2c9e9d4693694adb427d (patch) | |
| tree | 72b128614d9bc22b1b987ab65df1e87782006e1c /src | |
| parent | 662cee7fa4d6fb54f257def144f3f2b219ad2a8a (diff) | |
Fix remaining GCC 7.1 issue (nw)
Diffstat (limited to 'src')
| -rw-r--r-- | src/frontend/mame/luaengine.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frontend/mame/luaengine.h b/src/frontend/mame/luaengine.h index dfc860f21e5..e3f8d5ee93d 100644 --- a/src/frontend/mame/luaengine.h +++ b/src/frontend/mame/luaengine.h @@ -17,6 +17,10 @@ #ifndef __LUA_ENGINE_H__ #define __LUA_ENGINE_H__ +#if defined(__GNUC__) && (__GNUC__ > 6) +#pragma GCC diagnostic ignored "-Wnoexcept-type" +#endif + #include <map> #include <condition_variable> #define SOL_SAFE_USERTYPE |
