Front page | perl.perl5.porters |
Postings from February 2007
[PATCH] svtype != U32
From:
Jarkko Hietaniemi
Date:
February 28, 2007 18:40
Subject:
[PATCH] svtype != U32
Message ID:
200703010239.l212dfpJ244641@kosh.hut.fi
--- pp_hot.c.dist 2007-03-01 04:37:07.000000000 +0200
+++ pp_hot.c 2007-03-01 04:37:17.000000000 +0200
@@ -788,7 +788,7 @@
static const char an_array[] = "an ARRAY";
static const char a_hash[] = "a HASH";
const bool is_pp_rv2av = PL_op->op_type == OP_RV2AV;
- const U32 type = is_pp_rv2av ? SVt_PVAV : SVt_PVHV;
+ const svtype type = is_pp_rv2av ? SVt_PVAV : SVt_PVHV;
if (SvROK(sv)) {
wasref:
-
[PATCH] svtype != U32
by Jarkko Hietaniemi