Compile warning fix
This commit is contained in:
parent
eaf74df22f
commit
bee6964b48
1 changed files with 1 additions and 1 deletions
|
|
@ -3481,7 +3481,7 @@ public:
|
|||
* type but the return-type of function. */
|
||||
if(!SwigType_isfunction(uqtype) && !SwigType_isfunctionpointer(uqtype)) {
|
||||
SwigType *basetype = SwigType_base(uqtype);
|
||||
result = (bool)SwigType_isclass(basetype);
|
||||
result = SwigType_isclass(basetype) != 0;
|
||||
Delete(basetype);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue