diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-09-09 09:32:52 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-09-09 09:34:37 +0100 |
commit | 56b98d0f4bece55b858afe59e6460b6250dcde52 (patch) | |
tree | 6a893e64589a36fae738dd43e6f37b2a7ea497a6 /cop.h | |
parent | 14d519680d3b9b07f2015a7b0a15c88c356510cb (diff) | |
download | perl-56b98d0f4bece55b858afe59e6460b6250dcde52.tar.gz |
Define CxPADLOOP unconditionally, as post f83b46a0 it is always used.
Previously it was only used under -DITHREADS
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -695,9 +695,7 @@ struct context { /* private flags for CXt_LOOP */ #define CXp_FOR_DEF 0x10 /* foreach using $_ */ -#ifdef USE_ITHREADS -# define CxPADLOOP(c) ((c)->blk_loop.my_op->op_targ) -#endif +#define CxPADLOOP(c) ((c)->blk_loop.my_op->op_targ) /* private flags for CXt_SUBST */ #define CXp_ONCE 0x10 /* What was sbu_once in struct subst */ |