mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix [-Wundef] warning in MBString extension
This commit is contained in:
parent
c19887496e
commit
68164f40ce
10 changed files with 73 additions and 73 deletions
|
@ -21,7 +21,7 @@
|
|||
#include "php.h"
|
||||
#include "php_ini.h"
|
||||
|
||||
#if HAVE_MBREGEX
|
||||
#ifdef HAVE_MBREGEX
|
||||
|
||||
#include "zend_smart_str.h"
|
||||
#include "ext/standard/info.h"
|
||||
|
@ -33,7 +33,7 @@
|
|||
#include <oniguruma.h>
|
||||
#undef UChar
|
||||
|
||||
#if ONIGURUMA_VERSION_INT < 60800
|
||||
#if !defined(ONIGURUMA_VERSION_INT) || ONIGURUMA_VERSION_INT < 60800
|
||||
typedef void OnigMatchParam;
|
||||
#define onig_new_match_param() (NULL)
|
||||
#define onig_initialize_match_param(x) (void)(x)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue