Skip to content

Commit a5d5855

Browse files
committed
op.h: Restrict scope of multiconcat symbols to core
These are internal only
1 parent df39a12 commit a5d5855

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

op.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,6 +1072,8 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
10721072
#endif
10731073

10741074

1075+
#if defined(PERL_CORE) || defined(PERL_EXT)
1076+
10751077
/* Stuff for OP_MULTDEREF/pp_multideref. */
10761078

10771079
/* actions */
@@ -1111,6 +1113,8 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
11111113
#define MDEREF_MASK 0x7F
11121114
#define MDEREF_SHIFT 7
11131115

1116+
#endif /* end CORE/EXT only */
1117+
11141118
#if defined(PERL_IN_DOOP_C) || defined(PERL_IN_PP_C)
11151119
# define FATAL_ABOVE_FF_MSG \
11161120
"Use of strings with code points over 0xFF as arguments to " \

0 commit comments

Comments
 (0)