Skip to content

Commit 0a745c4

Browse files
committed
perl.h: Combine two preprocessor blocks
They have the same conditional, and the next commit will change that conditional and want it to apply to both.
1 parent 791874e commit 0a745c4

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

perl.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5125,13 +5125,9 @@ Gid_t getegid (void);
51255125
" file \"" __FILE__ "\", line %" LINE_Tf, \
51265126
STRINGIFY(what), (line_t) __LINE__), \
51275127
(void) 0))
5128+
# define assert_(what) assert(what),
51285129
#else
51295130
# define Perl_assert(what) ((void) 0)
5130-
#endif
5131-
5132-
#ifdef DEBUGGING
5133-
# define assert_(what) assert(what),
5134-
#else
51355131
# define assert_(what)
51365132
#endif
51375133

0 commit comments

Comments
 (0)