aboutsummaryrefslogtreecommitdiff
path: root/src/lane.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lane.cpp')
-rw-r--r--src/lane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lane.cpp b/src/lane.cpp
index d68da76..5904266 100644
--- a/src/lane.cpp
+++ b/src/lane.cpp
@@ -340,7 +340,7 @@ static LUAG_FUNC(thread_index)
340 340
341 default: // unknown key 341 default: // unknown key
342 lua_getmetatable(L_, kSelf); // L_: mt 342 lua_getmetatable(L_, kSelf); // L_: mt
343 lua_getfield(L_, -1, "cached_error"); // L_: mt error 343 std::ignore = luaG_getfield(L_, -1, "cached_error"); // L_: mt error
344 lua_pushliteral(L_, "Unknown key: "); // L_: mt error "Unknown key: " 344 lua_pushliteral(L_, "Unknown key: "); // L_: mt error "Unknown key: "
345 lua_pushvalue(L_, kKey); // L_: mt error "Unknown key: " k 345 lua_pushvalue(L_, kKey); // L_: mt error "Unknown key: " k
346 lua_concat(L_, 2); // L_: mt error "Unknown key: <k>" 346 lua_concat(L_, 2); // L_: mt error "Unknown key: <k>"