LuaAutoC icon indicating copy to clipboard operation
LuaAutoC copied to clipboard

Bug in lautoc.lua with functions

Open hypernewbie opened this issue 8 years ago • 1 comments

  for _, v in pairs(argtypes) do
    local fstring = fstring .. string.format(", %s", v)
  end

should be:

  for _, v in pairs(argtypes) do
    fstring = fstring .. string.format(", %s", v)
  end

Otherwise the argument list will always be a local variable and never actually contain any function types.

hypernewbie avatar Mar 21 '17 09:03 hypernewbie

Thanks - perhaps you can submit a pull request.

orangeduck avatar Mar 23 '17 10:03 orangeduck