We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab26257 commit 807ddd2Copy full SHA for 807ddd2
lldb/bindings/python/python.swig
@@ -59,23 +59,6 @@ except ImportError:
59
// Parameter types will be used in the autodoc string.
60
%feature("autodoc", "1");
61
62
-%define ARRAYHELPER(type,name)
63
-%inline %{
64
-type *new_ ## name (int nitems) {
65
- return (type *) malloc(sizeof(type)*nitems);
66
-}
67
-void delete_ ## name(type *t) {
68
- free(t);
69
70
-type name ## _get(type *t, int index) {
71
- return t[index];
72
73
-void name ## _set(type *t, int index, type val) {
74
- t[index] = val;
75
76
-%}
77
-%enddef
78
-
79
%pythoncode%{
80
import uuid
81
import re
0 commit comments