From 6894e6a7854351af3251a20ce5c787463bc7643a Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Fri, 5 Apr 2019 17:01:53 +0100 Subject: [PATCH] fixup to 'change LABEL type from pval to opval' Commit v5.29.9-68-g017192018b broke g++ builds. Spotted by Karl. --- toke.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toke.c b/toke.c index 0273566..30bdf32 100644 --- a/toke.c +++ b/toke.c @@ -7192,7 +7192,7 @@ Perl_yylex(pTHX) if (!anydelim && PL_expect == XSTATE && d < PL_bufend && *d == ':' && *(d + 1) != ':') { s = d + 1; - pl_yylval.pval = + pl_yylval.opval = newSVOP(OP_CONST, 0, newSVpvn_flags(PL_tokenbuf, len, UTF ? SVf_UTF8 : 0)); CLINE; -- 1.8.3.1