[php] Remove redundant in typemap for bool

This typemap which would wrap C++ bool as PHP int is later overridden
by another which wraps it as PHP bool.  The current result is what
we want so just remove the redundant one.
This commit is contained in:
Olly Betts 2021-12-13 09:31:11 +13:00
commit 94ad89284d

View file

@ -219,7 +219,6 @@
unsigned long,
signed char,
unsigned char,
bool,
size_t
%{
RETVAL_LONG($1);