summaryrefslogtreecommitdiff
path: root/dist/Storable
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-07-06 15:29:11 -0600
committerKarl Williamson <public@khwilliamson.com>2013-07-16 13:58:09 -0600
commite94d9b54a21e9546724df09abe1968bd32f833cf (patch)
tree58ab85e39fc1b2d10d9b284c62f14c651d4c8bb2 /dist/Storable
parent596005989a9f38f57e92b1769576e19a9527c59a (diff)
downloadperl-e94d9b54a21e9546724df09abe1968bd32f833cf.tar.gz
Reinstate "Create SVt_INVLIST"
This reverts commit 49cf1d6641a6dfd301302f616e4f25595dcc65d4, which reverted e045dbedc7da04e20cc8cfccec8a2e3ccc62cc8b, thus reinstating the latter commit. It turns out that the error being chased down was not due to this commit. Its original message was: This reshuffles the svtype enum to remove the dummy slot created in a previous commit, and add the new SVt_INVLIST type in its proper order. It still is unused, but since it is an extension of SVt_PV, it must be greater than that type's enum value. Since it can't be upgraded to any other PV type, it comes right after SVt_PV. Affected tables in the core are updated.
Diffstat (limited to 'dist/Storable')
-rw-r--r--dist/Storable/Storable.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Storable/Storable.xs b/dist/Storable/Storable.xs
index 9cba279c45..f0cfceabeb 100644
--- a/dist/Storable/Storable.xs
+++ b/dist/Storable/Storable.xs
@@ -3513,7 +3513,7 @@ static int sv_type(pTHX_ SV *sv)
case SVt_PVCV:
return svis_CODE;
#if PERL_VERSION > 8
- /* case SVt_DUMMY: */
+ /* case SVt_INVLIST: */
#endif
default:
break;