diff options
Diffstat (limited to 'src/deep.cpp')
-rw-r--r-- | src/deep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deep.cpp b/src/deep.cpp index 0d801a3..bfadeac 100644 --- a/src/deep.cpp +++ b/src/deep.cpp | |||
@@ -342,7 +342,7 @@ void DeepFactory::storeDeepLookup(lua_State* const L_) const | |||
342 | // the deep metatable is at the top of the stack // L_: mt | 342 | // the deep metatable is at the top of the stack // L_: mt |
343 | STACK_GROW(L_, 3); | 343 | STACK_GROW(L_, 3); |
344 | STACK_CHECK_START_REL(L_, 0); // L_: mt | 344 | STACK_CHECK_START_REL(L_, 0); // L_: mt |
345 | std::ignore = kDeepLookupRegKey.getSubTable(L_, 0, 0); // L_: mt {} | 345 | std::ignore = kDeepLookupRegKey.getSubTable(L_, NArr{ 0 }, NRec{ 0 }); // L_: mt {} |
346 | lua_pushvalue(L_, -2); // L_: mt {} mt | 346 | lua_pushvalue(L_, -2); // L_: mt {} mt |
347 | lua_pushlightuserdata(L_, std::bit_cast<void*>(this)); // L_: mt {} mt factory | 347 | lua_pushlightuserdata(L_, std::bit_cast<void*>(this)); // L_: mt {} mt factory |
348 | lua_rawset(L_, -3); // L_: mt {} | 348 | lua_rawset(L_, -3); // L_: mt {} |