Fix $resolvedType expansion for references to pointers
Use the base type, not the full type, to deal with the special case of references to pointers which are blacklisted by classLookup(), for some reason, but can be represented at C wrappers level.
This commit is contained in:
parent
26810a5f02
commit
184e620151
1 changed files with 1 additions and 1 deletions
|
|
@ -1582,7 +1582,7 @@ public:
|
|||
// Special case, just leave it unchanged.
|
||||
typestr = NewString("SwigObj");
|
||||
} else {
|
||||
typestr = getClassProxyName(classnametype);
|
||||
typestr = getClassProxyName(btype);
|
||||
if (!typestr) {
|
||||
if (SwigType_isbuiltin(btype)) {
|
||||
// This should work just as well in C without any changes.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue