Renamed the bind_native functions to bind_vararg, should make it show the documentation more clearly and also make it easier to bind to C#
This commit is contained in:
parent
19bd661a8f
commit
828e1c092f
13 changed files with 55 additions and 60 deletions
|
|
@ -198,6 +198,11 @@ void DocData::generate(bool p_basic_types) {
|
|||
if (method.qualifiers!="")
|
||||
method.qualifiers+=" ";
|
||||
method.qualifiers+="const";
|
||||
|
||||
} else if (E->get().flags&METHOD_FLAG_VARARG) {
|
||||
if (method.qualifiers!="")
|
||||
method.qualifiers+=" ";
|
||||
method.qualifiers+="vararg";
|
||||
}
|
||||
|
||||
for(int i=-1;i<E->get().arguments.size();i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue