util.cache: Add __name to metatable

This commit is contained in:
Matthew Wild 2020-10-30 14:05:07 +00:00
parent 1ab96f2289
commit 48521ba153

View file

@ -28,7 +28,7 @@ local function _insert(list, m)
end
local cache_methods = {};
local cache_mt = { __index = cache_methods };
local cache_mt = { __name = "cache", __index = cache_methods };
function cache_methods:set(k, v)
local m = self._data[k];