mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.3' into PHP-8.4
This commit is contained in:
4
NEWS
4
NEWS
@@ -2,6 +2,10 @@ PHP NEWS
|
||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||
?? ??? ????, PHP 8.4.12
|
||||
|
||||
- Core:
|
||||
. Fixed GH-19169 build issue with C++17 and ZEND_STATIC_ASSERT macro.
|
||||
(psumbera)
|
||||
|
||||
- Hash:
|
||||
. Fix crash on clone failure. (nielsdos)
|
||||
|
||||
|
||||
@@ -785,7 +785,9 @@ extern "C++" {
|
||||
/** @deprecated */
|
||||
#define ZEND_CGG_DIAGNOSTIC_IGNORED_END ZEND_DIAGNOSTIC_IGNORED_END
|
||||
|
||||
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) /* C11 */
|
||||
#if defined(__cplusplus)
|
||||
# define ZEND_STATIC_ASSERT(c, m) static_assert((c), m)
|
||||
#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) /* C11 */
|
||||
# define ZEND_STATIC_ASSERT(c, m) _Static_assert((c), m)
|
||||
#else
|
||||
# define ZEND_STATIC_ASSERT(c, m)
|
||||
|
||||
Reference in New Issue
Block a user