mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 08:38:23 +00:00
op_reg_common.h: Convert _o to legal name
This commit is contained in:
parent
1da5249c65
commit
9d2aa8819e
8
scope.h
8
scope.h
@ -304,10 +304,10 @@ casts it to a pointer of that C<type>.
|
||||
|
||||
# define save_freeop(op) \
|
||||
STMT_START { \
|
||||
OP * const _o = (OP *)(op); \
|
||||
assert(!_o->op_savefree); \
|
||||
_o->op_savefree = 1; \
|
||||
save_pushptr((void *)(_o), SAVEt_FREEOP); \
|
||||
OP * const o_ = (OP *)(op); \
|
||||
assert(!o_->op_savefree); \
|
||||
o_->op_savefree = 1; \
|
||||
save_pushptr((void *)(o_), SAVEt_FREEOP); \
|
||||
} STMT_END
|
||||
#define save_freepv(pv) save_pushptr((void *)(pv), SAVEt_FREEPV)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user