bench doesn't need to be a class

This commit is contained in:
2025-06-29 18:12:47 -04:00
parent b60e6a3934
commit 8b91fc9c2f
2 changed files with 2 additions and 5 deletions

View File

@ -7,11 +7,8 @@
local bench = {}
local b
function bench:setup()
function bench.setup()
local o = {}
self = {}
self.__index = self
setmetatable(o, self)
o.perf = {}
o.inited = true