From: Vincent Pit Date: Sat, 4 Nov 2017 17:02:02 +0000 (+0100) Subject: Update VPIT::XSHelpers to 18554226 X-Git-Tag: v0.16~3 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=ceacb239262d929bee663a3d996db7e11c19a61e Update VPIT::XSHelpers to 18554226 --- diff --git a/xsh/util.h b/xsh/util.h index 599dbf4..5004723 100644 --- a/xsh/util.h +++ b/xsh/util.h @@ -13,7 +13,12 @@ # if XSH_HAS_PERL(5, 8, 9) || XSH_HAS_PERL(5, 9, 3) # define XSH_ASSERT(C) assert(C) # else -# define XSH_ASSERT(C) PERL_DEB( \ +# ifdef PERL_DEB +# define XSH_DEB(X) PERL_DEB(X) +# else +# define XSH_DEB(X) (X) +# endif +# define XSH_ASSERT(C) XSH_DEB( \ ((C) ? ((void) 0) \ : (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \ "\", line %d", STRINGIFY(C), __LINE__), \