mirror of
https://github.com/OpenMW/openmw.git
synced 2025-07-08 20:11:37 +00:00
To fix warning (silenced by 3b97af0ac417c6f5ee2d16fa4c2cab2885409352): In file included from ../../../extern/sol3/sol/stack_check_get.hpp:28, from ../../../extern/sol3/sol/stack.hpp:32, from ../../../extern/sol3/sol/sol.hpp:52, from ../../../components/lua/luastate.hpp:8, from ../../../apps/openmw/mwlua/context.hpp:4, from ../../../apps/openmw/mwlua/soundbindings.hpp:6, from ../../../apps/openmw/mwlua/soundbindings.cpp:1: In function 'OptionalType sol::stack::stack_detail::get_optional(lua_State*, int, Handler&&, sol::stack::record&) [with OptionalType = sol::optional<float>; T = float; Handler = int (*)(lua_State*, int, sol::type, sol::type, const char*) noexcept]', inlined from 'static Optional sol::stack::qualified_getter<Optional, typename std::enable_if<is_optional_v<Optional>, void>::type>::get(lua_State*, int, sol::stack::record&) [with Optional = sol::optional<float>]' at ../../../extern/sol3/sol/stack_check_get_qualified.hpp:133:50, inlined from 'decltype(auto) sol::stack::stack_detail::unchecked_get(lua_State*, int, sol::stack::record&) [with T = sol::optional<float>]' at ../../../extern/sol3/sol/stack_core.hpp:725:18, inlined from 'decltype (unchecked_get<T>(L, index, tracking)) sol::stack::get(lua_State*, int, record&) [with T = sol::optional<float>]' at ../../../extern/sol3/sol/stack_core.hpp:1186:41, inlined from 'decltype(auto) sol::stack::get(lua_State*, int) [with T = sol::optional<float>]' at ../../../extern/sol3/sol/stack_core.hpp:1193:17: ../../../extern/sol3/sol/stack_check_get_qualified.hpp:112:49: error: '*(float*)((char*)&<unnamed> + offsetof(sol::optional<float>,sol::optional<float>::<unnamed>.sol::detail::optional_move_assign_base<float, true>::<unnamed>.sol::detail::optional_copy_assign_base<float, true>::<unnamed>.sol::detail::optional_move_base<float, true>::<unnamed>.sol::detail::optional_copy_base<float, true>::<unnamed>.sol::detail::optional_operations_base<float>::<unnamed>.sol::detail::optional_storage_base<float, true>::<unnamed>))' may be used uninitialized [-Werror=maybe-uninitialized] 112 | return {}; | ^ ../../../extern/sol3/sol/stack_check_get_qualified.hpp: In function 'decltype(auto) sol::stack::get(lua_State*, int) [with T = sol::optional<float>]': ../../../extern/sol3/sol/stack_check_get_qualified.hpp:112:49: note: '<anonymous>' declared here 112 | return {}; | ^
245 lines
7.4 KiB
C++
245 lines
7.4 KiB
C++
// sol2
|
|
|
|
// The MIT License (MIT)
|
|
|
|
// Copyright (c) 2013-2022 Rapptz, ThePhD and contributors
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
// this software and associated documentation files (the "Software"), to deal in
|
|
// the Software without restriction, including without limitation the rights to
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
// the Software, and to permit persons to whom the Software is furnished to do so,
|
|
// subject to the following conditions:
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#ifndef SOL_COMPATIBILITY_LUA_VERSION_HPP
|
|
#define SOL_COMPATIBILITY_LUA_VERSION_HPP
|
|
|
|
#include <sol/version.hpp>
|
|
|
|
// clang-format off
|
|
|
|
#if SOL_IS_ON(SOL_USING_CXX_LUA)
|
|
#if __has_include(<lua/lua.h>)
|
|
#include <lua/lua.h>
|
|
#include <lua/lauxlib.h>
|
|
#include <lua/lualib.h>
|
|
#else
|
|
#include <lua.h>
|
|
#include <lauxlib.h>
|
|
#include <lualib.h>
|
|
#endif
|
|
#elif SOL_IS_ON(SOL_USE_LUA_HPP)
|
|
#if __has_include(<lua/lua.hpp>)
|
|
#include <lua/lua.hpp>
|
|
#else
|
|
#include <lua.hpp>
|
|
#endif
|
|
#else
|
|
extern "C" {
|
|
#if __has_include(<lua/lua.h>)
|
|
#include <lua/lua.h>
|
|
#include <lua/lauxlib.h>
|
|
#include <lua/lualib.h>
|
|
#else
|
|
#include <lua.h>
|
|
#include <lauxlib.h>
|
|
#include <lualib.h>
|
|
#endif
|
|
}
|
|
#endif // C++ Mangling for Lua vs. Not
|
|
|
|
#if defined(SOL_LUAJIT)
|
|
#if (SOL_LUAJIT != 0)
|
|
#define SOL_USE_LUAJIT_I_ SOL_ON
|
|
#else
|
|
#define SOL_USE_LUAJIT_I_ SOL_OFF
|
|
#endif
|
|
#elif defined(LUAJIT_VERSION)
|
|
#define SOL_USE_LUAJIT_I_ SOL_ON
|
|
#elif SOL_IS_ON(SOL_USING_CXX_LUAJIT)
|
|
#define SOL_USE_LUAJIT_I_ SOL_ON
|
|
#else
|
|
#define SOL_USE_LUAJIT_I_ SOL_DEFAULT_OFF
|
|
#endif // luajit
|
|
|
|
#if SOL_IS_ON(SOL_USING_CXX_LUAJIT)
|
|
#include <luajit.h>
|
|
#elif SOL_IS_ON(SOL_USE_LUAJIT)
|
|
extern "C" {
|
|
#include <luajit.h>
|
|
}
|
|
#endif // C++ LuaJIT ... whatever that means
|
|
|
|
#if defined(SOL_LUAJIT_VERSION)
|
|
#define SOL_LUAJIT_VERSION_I_ SOL_LUAJIT_VERSION
|
|
#elif SOL_IS_ON(SOL_USE_LUAJIT)
|
|
#define SOL_LUAJIT_VERSION_I_ LUAJIT_VERSION_NUM
|
|
#else
|
|
#define SOL_LUAJIT_VERSION_I_ 0
|
|
#endif
|
|
|
|
#if defined(SOL_LUAJIT_FFI_DISABLED)
|
|
#define SOL_LUAJIT_FFI_DISABLED_I_ SOL_ON
|
|
#elif defined(LUAJIT_DISABLE_FFI)
|
|
#define SOL_LUAJIT_FFI_DISABLED_I_ SOL_ON
|
|
#else
|
|
#define SOL_LUAJIT_FFI_DISABLED_I_ SOL_DEFAULT_OFF
|
|
#endif
|
|
|
|
#if defined(MOONJIT_VERSION)
|
|
#define SOL_USE_MOONJIT_I_ SOL_ON
|
|
#else
|
|
#define SOL_USE_MOONJIT_I_ SOL_OFF
|
|
#endif
|
|
|
|
#if !defined(SOL_LUA_VERSION)
|
|
#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 502
|
|
#define SOL_LUA_VERSION LUA_VERSION_NUM
|
|
#elif defined(LUA_VERSION_NUM) && LUA_VERSION_NUM == 501
|
|
#define SOL_LUA_VERSION LUA_VERSION_NUM
|
|
#elif !defined(LUA_VERSION_NUM) || !(LUA_VERSION_NUM)
|
|
// Definitely 5.0
|
|
#define SOL_LUA_VERSION 500
|
|
#else
|
|
// ??? Not sure, assume latest?
|
|
#define SOL_LUA_VERSION 504
|
|
#endif // Lua Version 503, 502, 501 || luajit, 500
|
|
#endif // SOL_LUA_VERSION
|
|
|
|
#if defined(SOL_LUA_VERSION)
|
|
#define SOL_LUA_VERSION_I_ SOL_LUA_VERSION
|
|
#else
|
|
#define SOL_LUA_VERSION_I_ 504
|
|
#endif
|
|
|
|
// Exception safety / propagation, according to Lua information
|
|
// and user defines. Note this can sometimes change based on version information...
|
|
#if defined(SOL_EXCEPTIONS_ALWAYS_UNSAFE)
|
|
#if (SOL_EXCEPTIONS_ALWAYS_UNSAFE != 0)
|
|
#define SOL_PROPAGATE_EXCEPTIONS_I_ SOL_OFF
|
|
#else
|
|
#define SOL_PROPAGATE_EXCEPTIONS_I_ SOL_ON
|
|
#endif
|
|
#elif defined(SOL_EXCEPTIONS_SAFE_PROPAGATION)
|
|
#if (SOL_EXCEPTIONS_SAFE_PROPAGATION != 0)
|
|
#define SOL_PROPAGATE_EXCEPTIONS_I_ SOL_ON
|
|
#else
|
|
#define SOL_PROPAGATE_EXCEPTIONS_I_ SOL_OFF
|
|
#endif
|
|
#else
|
|
#if SOL_IS_ON(SOL_USE_LUAJIT)
|
|
#if SOL_USE(SOL_LUAJIT_VERSION) >= 20100
|
|
// LuaJIT 2.1.0-beta3 and better have exception support locked in for all platforms (mostly)
|
|
#define SOL_PROPAGATE_EXCEPTIONS_I_ SOL_DEFAULT_ON
|
|
#elif SOL_USE(SOL_LUAJIT_VERSION) >= 20000
|
|
// LuaJIT 2.0.x have exception support only on x64 builds
|
|
#if SOL_IS_ON(SOL_PLATFORM_X64)
|
|
#define SOL_PROPAGATE_EXCEPTIONS_I_ SOL_DEFAULT_ON
|
|
#else
|
|
#define SOL_PROPAGATE_EXCEPTIONS_I_ SOL_DEFAULT_OFF
|
|
#endif
|
|
#endif
|
|
#else
|
|
// otherwise, there is no exception safety for
|
|
// shoving exceptions through Lua and errors should
|
|
// always be serialized
|
|
#define SOL_PROPAGATE_EXCEPTIONS_I_ SOL_DEFAULT_OFF
|
|
#endif
|
|
#endif
|
|
|
|
// Some configurations work with exceptions,
|
|
// but cannot catch-all everything...
|
|
#if defined(SOL_EXCEPTIONS_CATCH_ALL)
|
|
#if (SOL_EXCEPTIONS_CATCH_ALL != 0)
|
|
#define SOL_EXCEPTIONS_CATCH_ALL_I_ SOL_ON
|
|
#else
|
|
#define SOL_EXCEPTIONS_CATCH_ALL_I_ SOL_OFF
|
|
#endif
|
|
#else
|
|
#if SOL_IS_ON(SOL_USE_LUAJIT) || SOL_IS_ON(SOL_USING_CXX_LUAJIT)
|
|
#define SOL_EXCEPTIONS_CATCH_ALL_I_ SOL_DEFAULT_OFF
|
|
#elif SOL_IS_ON(SOL_USING_CXX_LUA)
|
|
// C++ builds of Lua will throw an exception to implement its `yield` behavior;
|
|
// it is irresponsible to "catch all" on this setting.
|
|
#define SOL_EXCEPTIONS_CATCH_ALL_I_ SOL_DEFAULT_OFF
|
|
#else
|
|
// Otherwise, by default, everyhting should be caught.
|
|
#define SOL_EXCEPTIONS_CATCH_ALL_I_ SOL_DEFAULT_ON
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(SOL_LUAJIT_USE_EXCEPTION_TRAMPOLINE)
|
|
#if (SOL_LUAJIT_USE_EXCEPTION_TRAMPOLINE != 0)
|
|
#define SOL_USE_LUAJIT_EXCEPTION_TRAMPOLINE_I_ SOL_ON
|
|
#else
|
|
#define SOL_USE_LUAJIT_EXCEPTION_TRAMPOLINE_I_ SOL_OFF
|
|
#endif
|
|
#else
|
|
#if SOL_IS_OFF(SOL_PROPAGATE_EXCEPTIONS) && SOL_IS_ON(SOL_USE_LUAJIT)
|
|
#define SOL_USE_LUAJIT_EXCEPTION_TRAMPOLINE_I_ SOL_ON
|
|
#else
|
|
#define SOL_USE_LUAJIT_EXCEPTION_TRAMPOLINE_I_ SOL_DEFAULT_OFF
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(SOL_LUAL_STREAM_HAS_CLOSE_FUNCTION)
|
|
#if (SOL_LUAL_STREAM_HAS_CLOSE_FUNCTION != 0)
|
|
#define SOL_LUAL_STREAM_USE_CLOSE_FUNCTION_I_ SOL_ON
|
|
#else
|
|
#define SOL_LUAL_STREAM_USE_CLOSE_FUNCTION_I_ SOL_OFF
|
|
#endif
|
|
#else
|
|
#if SOL_IS_OFF(SOL_USE_LUAJIT) && (SOL_LUA_VERSION > 501)
|
|
#define SOL_LUAL_STREAM_USE_CLOSE_FUNCTION_I_ SOL_ON
|
|
#else
|
|
#define SOL_LUAL_STREAM_USE_CLOSE_FUNCTION_I_ SOL_DEFAULT_OFF
|
|
#endif
|
|
#endif
|
|
|
|
#if defined (SOL_LUA_BIT32_LIB)
|
|
#if SOL_LUA_BIT32_LIB != 0
|
|
#define SOL_LUA_BIT32_LIB_I_ SOL_ON
|
|
#else
|
|
#define SOL_LUA_BIT32_LIB_I_ SOL_OFF
|
|
#endif
|
|
#else
|
|
// Lua 5.2 only (deprecated in 5.3 (503)) (Can be turned on with Compat flags)
|
|
// Lua 5.2, or other versions of Lua with the compat flag, or Lua that is not 5.2 with the specific define (5.4.1 either removed it entirely or broke it)
|
|
#if (SOL_LUA_VERSION_I_ == 502)
|
|
#define SOL_LUA_BIT32_LIB_I_ SOL_ON
|
|
#elif defined(LUA_COMPAT_BITLIB)
|
|
#define SOL_LUA_BIT32_LIB_I_ SOL_ON
|
|
#elif (SOL_LUA_VERSION_I_ < 504 && defined(LUA_COMPAT_5_2))
|
|
#define SOL_LUA_BIT32_LIB_I_ SOL_ON
|
|
#else
|
|
#define SOL_LUA_BIT32_LIB_I_ SOL_DEFAULT_OFF
|
|
#endif
|
|
#endif
|
|
|
|
#if defined (SOL_LUA_NIL_IN_TABLES)
|
|
#if SOL_LUA_NIL_IN_TABLES != 0
|
|
#define SOL_LUA_NIL_IN_TABLES_I_ SOL_ON
|
|
#else
|
|
#define SOL_LUA_NIL_IN_TABLES_I_ SOL_OFF
|
|
#endif
|
|
#else
|
|
#if defined(LUA_NILINTABLE) && (LUA_NILINTABLE != 0)
|
|
#define SOL_LUA_NIL_IN_TABLES_I_ SOL_DEFAULT_ON
|
|
#else
|
|
#define SOL_LUA_NIL_IN_TABLES_I_ SOL_DEFAULT_OFF
|
|
#endif
|
|
#endif
|
|
|
|
// clang-format on
|
|
|
|
#endif // SOL_COMPATIBILITY_LUA_VERSION_HPP
|