diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-12-26 11:55:15 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-12-26 11:55:15 +0000 |
commit | b53eecb41cfe1ac98c147076b9df0047426f32f2 (patch) | |
tree | a7953eba245873ff0f8fd774f22273e68bd3eaa9 /dump.c | |
parent | c975a42590d4415cbde1dbf125978db0461d609f (diff) | |
download | perl-b53eecb41cfe1ac98c147076b9df0047426f32f2.tar.gz |
Swap SVt_RV and SVt_NV in the SV ordering.
p4raw-id: //depot/perl@32725
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,8 +31,8 @@ static const char* const svtypenames[SVt_LAST] = { "NULL", "BIND", "IV", - "NV", "RV", + "NV", "PV", "PVIV", "PVNV", @@ -51,8 +51,8 @@ static const char* const svshorttypenames[SVt_LAST] = { "UNDEF", "BIND", "IV", - "NV", "RV", + "NV", "PV", "PVIV", "PVNV", |