We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ffa89d commit c07f83aCopy full SHA for c07f83a
perl.h
@@ -5098,10 +5098,11 @@ Gid_t getegid (void);
5098
5099
#ifdef DEBUGGING
5100
# define Perl_assert(what) \
5101
- ((what) \
5102
- ? ((void) 0) \
5103
- : (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \
5104
- "\", line %d", STRINGIFY(what), __LINE__)
+ ((what) \
+ ? ((void) 0) \
+ : Perl_croak_nocontext("Assertion %s failed:" \
+ " file \"" __FILE__ "\", line %d", \
5105
+ STRINGIFY(what), __LINE__))
5106
#else
5107
# define Perl_assert(what) ((void) 0)
5108
#endif
0 commit comments