mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 15:34:09 +00:00
[luacheck] fix (W213) unused loop variable v
This commit is contained in:
parent
6c0ebfa995
commit
520d138a78
@ -120,7 +120,7 @@ end
|
|||||||
-- Show top N list.
|
-- Show top N list.
|
||||||
local function prof_top(count1, count2, samples, indent)
|
local function prof_top(count1, count2, samples, indent)
|
||||||
local t, n = {}, 0
|
local t, n = {}, 0
|
||||||
for k, v in pairs(count1) do
|
for k in pairs(count1) do
|
||||||
n = n + 1
|
n = n + 1
|
||||||
t[n] = k
|
t[n] = k
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user