# include "misc/exception.hpp"
#endif
+#ifdef _GNUC
+# define ATTR_UNUSED __attribute__((unused))
+#else
+# define ATTR_UNUSED
+#endif
+
/**
* Defines a Lua context
* A Lua context is used to interpret Lua code. Since everything in Lua is a variable (including functions),
};
/// @deprecated
-static LuaContext::EmptyArray_t
+static LuaContext::EmptyArray_t ATTR_UNUSED
LuaEmptyArray {};
/// @deprecated
-static LuaContext::Metatable_t
+static LuaContext::Metatable_t ATTR_UNUNSED
LuaMetatable {};
/**************************************************/