Update of /cvsroot/wxlua/wxLua/bindings
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27045/bindings
Modified Files:
genwxbind.lua
Log Message:
Ignore "inline" attribute for functions
Index: genwxbind.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v
retrieving revision 1.140
retrieving revision 1.141
diff -C2 -d -r1.140 -r1.141
*** genwxbind.lua 2 Jul 2007 00:05:12 -0000 1.140
--- genwxbind.lua 2 Jul 2007 17:06:03 -0000 1.141
***************
*** 2136,2139 ****
--- 2136,2144 ----
lineState.ActionMandatory = true
+ elseif tag == "inline" then
+ lineState.DefType = "method"
+ lineState.Action = "method"
+ lineState.ActionMandatory = true
+
else
if lineState.IsConstructor then
|