Skip to content

Commit cbd4edb

Browse files
committed
sv.h Convert _SV_HEAD_DEBUG to legal name
1 parent 9834098 commit cbd4edb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sv.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,18 +228,18 @@ typedef struct hek HEK;
228228
GP* svu_gp; \
229229
PerlIO *svu_fp; \
230230
} sv_u \
231-
_SV_HEAD_DEBUG
231+
SV_HEAD_DEBUG_
232232

233233
#ifdef DEBUG_LEAKING_SCALARS
234-
#define _SV_HEAD_DEBUG ;\
234+
#define SV_HEAD_DEBUG_ ;\
235235
PERL_BITFIELD32 sv_debug_optype:9; /* the type of OP that allocated us */ \
236236
PERL_BITFIELD32 sv_debug_inpad:1; /* was allocated in a pad for an OP */ \
237237
PERL_BITFIELD32 sv_debug_line:16; /* the line where we were allocated */ \
238238
UV sv_debug_serial; /* serial number of sv allocation */ \
239239
char * sv_debug_file; /* the file where we were allocated */ \
240240
SV * sv_debug_parent /* what we were cloned from (ithreads)*/
241241
#else
242-
#define _SV_HEAD_DEBUG
242+
#define SV_HEAD_DEBUG_
243243
#endif
244244

245245
struct STRUCT_SV { /* struct sv { */

0 commit comments

Comments
 (0)