File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17020,7 +17020,7 @@ namespace sol {
17020
17020
typedef std::remove_pointer_t<std::decay_t<Function>> function_type;
17021
17021
typedef meta::bind_traits<function_type> traits_type;
17022
17022
17023
- static int real_call(lua_State* L) noexcept(traits_type::is_noexcept) {
17023
+ static int real_call(lua_State* L) /* noexcept(traits_type::is_noexcept) */ {
17024
17024
auto udata = stack::stack_detail::get_as_upvalues<function_type*>(L);
17025
17025
function_type* fx = udata.first;
17026
17026
return call_detail::call_wrapped<void, true, false>(L, fx);
@@ -17155,7 +17155,7 @@ namespace sol {
17155
17155
typedef std::remove_pointer_t<std::decay_t<Function>> function_type;
17156
17156
typedef lua_bind_traits<function_type> traits_type;
17157
17157
17158
- static int real_call(lua_State* L) noexcept(traits_type::is_noexcept) {
17158
+ static int real_call(lua_State* L) /* noexcept(traits_type::is_noexcept) */ {
17159
17159
// Layout:
17160
17160
// idx 1...n: verbatim data of member variable pointer
17161
17161
function_type& memfx = stack::get<user<function_type>>(L, upvalue_index(2));
You can’t perform that action at this time.
0 commit comments