aboutsummaryrefslogtreecommitdiff
path: root/src/intercopycontext.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/intercopycontext.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/intercopycontext.cpp b/src/intercopycontext.cpp
index 6623b16..adbb502 100644
--- a/src/intercopycontext.cpp
+++ b/src/intercopycontext.cpp
@@ -1165,10 +1165,10 @@ static char const* vt_names[] = {
1165 DEBUGSPEW_CODE(DebugSpewIndentScope scope); 1165 DEBUGSPEW_CODE(DebugSpewIndentScope scope);
1166 1166
1167 public: 1167 public:
1168 OnExit(DEBUGSPEW_PARAM_COMMA(Universe* U_) lua_State* L2_) 1168 OnExit(lua_State* L2_)
1169 : L2{ L2_ } 1169 : L2{ L2_ }
1170 , top_L2{ lua_gettop(L2) } 1170 , top_L2{ lua_gettop(L2) }
1171 DEBUGSPEW_COMMA_PARAM(scope{ U_ }) 1171 DEBUGSPEW_COMMA_PARAM(scope{ universe_get(L2_) })
1172 { 1172 {
1173 } 1173 }
1174 1174
@@ -1176,7 +1176,7 @@ static char const* vt_names[] = {
1176 { 1176 {
1177 lua_settop(L2, top_L2); 1177 lua_settop(L2, top_L2);
1178 } 1178 }
1179 } onExit{ DEBUGSPEW_PARAM_COMMA(U) L2 }; 1179 } const _onExit{ L2 };
1180 1180
1181 STACK_CHECK_START_REL(L1, 0); 1181 STACK_CHECK_START_REL(L1, 0);
1182 if (lua_type_as_enum(L1, L1_i) != LuaType::TABLE) { 1182 if (lua_type_as_enum(L1, L1_i) != LuaType::TABLE) {