diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-06-28 16:59:52 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-06-28 16:59:52 +0200 |
commit | cf29c0f212dd2f3cbf4ba880230fe7824db73ee1 (patch) | |
tree | 61ff85a5e8e368b759a9f3e3c04e6a7d7d75d952 /sapi/phpdbg/phpdbg_out.h | |
parent | 88d52ae7aabec35913b8b4115315729e5f492a27 (diff) | |
download | php-git-cf29c0f212dd2f3cbf4ba880230fe7824db73ee1.tar.gz |
Remove phpdbg_xml_asprintf()
Clang doesn't like the use of promoted zend_bool in va_start. As
the function isn't used anyway, I'm simply dropping it...
Diffstat (limited to 'sapi/phpdbg/phpdbg_out.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_out.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sapi/phpdbg/phpdbg_out.h b/sapi/phpdbg/phpdbg_out.h index c6d05bf114..09f4815d85 100644 --- a/sapi/phpdbg/phpdbg_out.h +++ b/sapi/phpdbg/phpdbg_out.h @@ -67,9 +67,6 @@ PHPDBG_API int phpdbg_rlog_internal(int fd, const char *fmt, ...) PHPDBG_ATTRIBU #define phpdbg_rlog(fd, fmt, ...) phpdbg_rlog_internal(fd, fmt, ##__VA_ARGS__) -#define phpdbg_xml_asprintf(buf, ...) _phpdbg_xml_asprintf(buf, ##__VA_ARGS__) -PHPDBG_API int _phpdbg_xml_asprintf(char **buf, const char *format, zend_bool escape_xml, ...); - #define phpdbg_asprintf(buf, ...) _phpdbg_asprintf(buf, ##__VA_ARGS__) PHPDBG_API int _phpdbg_asprintf(char **buf, const char *format, ...); |