summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2017-05-15 18:47:00 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2017-05-15 18:47:53 +0200
commitf3b954ba6e49a8aaec8c2c9e9d4693694adb427d (patch)
tree72b128614d9bc22b1b987ab65df1e87782006e1c /src
parent662cee7fa4d6fb54f257def144f3f2b219ad2a8a (diff)
Fix remaining GCC 7.1 issue (nw)
Diffstat (limited to 'src')
-rw-r--r--src/frontend/mame/luaengine.h4
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