You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
isn't supported by Visual Studio compilers (and maybe others as well). The problem is that the php_cmark_assert_typemacro gets resolved before the conditional compilation, and is expanded on a single line, yielding invalid syntax.
Maybe it's best to rewrite this as:
#ifPHP_VERSION_ID >= 70400php_cmark_assert_type(value, IS_STRING, 0, return&EG(uninitialized_zval), "fence expected to be string");
#elsephp_cmark_assert_type(value, IS_STRING, 0, return, "fence expected to be string");
#endif
The text was updated successfully, but these errors were encountered:
Syntax like
cmark/src/block.c
Lines 89 to 95 in c71ebe2
isn't supported by Visual Studio compilers (and maybe others as well). The problem is that the
php_cmark_assert_type
macro gets resolved before the conditional compilation, and is expanded on a single line, yielding invalid syntax.Maybe it's best to rewrite this as:
The text was updated successfully, but these errors were encountered: