diff options
Diffstat (limited to 'src/nameof.cpp')
-rw-r--r-- | src/nameof.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nameof.cpp b/src/nameof.cpp index 8e79fda..6c968d5 100644 --- a/src/nameof.cpp +++ b/src/nameof.cpp | |||
@@ -60,7 +60,7 @@ THE SOFTWARE. | |||
60 | // scan table contents | 60 | // scan table contents |
61 | lua_pushnil(L_); // L_: o "r" {c} {fqn} ... {?} nil | 61 | lua_pushnil(L_); // L_: o "r" {c} {fqn} ... {?} nil |
62 | while (lua_next(L_, -2)) { // L_: o "r" {c} {fqn} ... {?} k v | 62 | while (lua_next(L_, -2)) { // L_: o "r" {c} {fqn} ... {?} k v |
63 | // std::string_view const _strKey{ (luaG_type(L_, -2) == LuaType::STRING) ? luaG_tostringview(L_, -2) : "" }; // only for debugging | 63 | // std::string_view const _strKey{ (luaG_type(L_, -2) == LuaType::STRING) ? luaG_tostring(L_, -2) : "" }; // only for debugging |
64 | // lua_Number const numKey = (luaG_type(L_, -2) == LuaType::NUMBER) ? lua_tonumber(L_, -2) : -6666; // only for debugging | 64 | // lua_Number const numKey = (luaG_type(L_, -2) == LuaType::NUMBER) ? lua_tonumber(L_, -2) : -6666; // only for debugging |
65 | STACK_CHECK(L_, 2); | 65 | STACK_CHECK(L_, 2); |
66 | // append key name to fqn stack | 66 | // append key name to fqn stack |