remove static from structs

This commit is contained in:
sonoro1234
2018-11-23 10:22:48 +01:00
parent 76935a7d83
commit 14cd6715d2
7 changed files with 139 additions and 139 deletions

View File

@@ -433,7 +433,7 @@ local function struct_parser()
elseif line:match("public:") then
--nothing
else
local linea = line:gsub("%S+",{class="struct",mutable=""})
local linea = line:gsub("%S+",{class="struct",mutable="",static=""})
local template = linea:match("ImVector<(.+)>")
if template then
local te = template:gsub("%s","_")