diff options
Diffstat (limited to 'math/pecl-bitset2/files/patch-bitset.c')
-rw-r--r-- | math/pecl-bitset2/files/patch-bitset.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/math/pecl-bitset2/files/patch-bitset.c b/math/pecl-bitset2/files/patch-bitset.c deleted file mode 100644 index fd5d1b3f7fdd..000000000000 --- a/math/pecl-bitset2/files/patch-bitset.c +++ /dev/null @@ -1,20 +0,0 @@ ---- bitset.c.orig 2017-10-06 16:29:59 UTC -+++ bitset.c -@@ -652,7 +652,7 @@ PHP_METHOD(BitSet, previousClearBit) - bit_diff = intern->bitset_len * CHAR_BIT; - - if (start_bit > bit_diff) { -- zend_throw_exception_ex(spl_ce_OutOfRangeException, 0, -+ zend_throw_exception_ex(spl_ce_OutOfRangeException, 0 TSRMLS_CC, - "The specified index parameter exceeds the total number of bits available"); - return; - } -@@ -696,7 +696,7 @@ PHP_METHOD(BitSet, previousSetBit) - bit_diff = intern->bitset_len * CHAR_BIT; - - if (start_bit > bit_diff) { -- zend_throw_exception_ex(spl_ce_OutOfRangeException, 0, -+ zend_throw_exception_ex(spl_ce_OutOfRangeException, 0 TSRMLS_CC, - "The specified index parameter exceeds the total number of bits available"); - } - |