Warning fix for VC++
This commit is contained in:
parent
ea1b6e8ed5
commit
e4d02d20ad
1 changed files with 1 additions and 1 deletions
|
|
@ -1835,7 +1835,7 @@ public:
|
|||
* ------------------------------------------------------------ */
|
||||
static bool isPointerType(SwigType* t) {
|
||||
SwigType* const full_type = SwigType_typedef_resolve_all(t);
|
||||
bool const ispointer = SwigType_ispointer(full_type);
|
||||
bool ispointer = SwigType_ispointer(full_type) ? true : false;
|
||||
Delete(full_type);
|
||||
|
||||
return ispointer;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue