mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-28 18:31:40 +00:00
Ignore new append function in SWIG
This commit is contained in:
@@ -82,6 +82,7 @@
|
||||
%ignore rdcarray::data;
|
||||
%ignore rdcarray::assign;
|
||||
%ignore rdcarray::insert;
|
||||
%ignore rdcarray::append;
|
||||
%ignore rdcarray::erase;
|
||||
%ignore rdcarray::count;
|
||||
%ignore rdcarray::capacity;
|
||||
@@ -163,8 +164,9 @@ TEMPLATE_ARRAY_DECLARE(rdcarray);
|
||||
%feature("docstring") "";
|
||||
|
||||
%extend rdcarray {
|
||||
// we ignored insert and clear before, need to restore them so we can declare our own impls
|
||||
// we ignored insert, append and clear before, need to restore them so we can declare our own impls
|
||||
%rename("%s") insert;
|
||||
%rename("%s") append;
|
||||
%rename("%s") clear;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user