diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-06-11 16:57:22 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-07-03 19:21:19 -0600 |
commit | e045dbedc7da04e20cc8cfccec8a2e3ccc62cc8b (patch) | |
tree | 4e3f84c2751b6512a15f8fb3a5c656e849152d20 /dist | |
parent | 05944450e0fc82eb8fc1fb5a4bf63f23785262a0 (diff) | |
download | perl-e045dbedc7da04e20cc8cfccec8a2e3ccc62cc8b.tar.gz |
Create SVt_INVLIST
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')
-rw-r--r-- | dist/Storable/Storable.pm | 2 | ||||
-rw-r--r-- | dist/Storable/Storable.xs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dist/Storable/Storable.pm b/dist/Storable/Storable.pm index 1a73c3fafa..5f63871bb8 100644 --- a/dist/Storable/Storable.pm +++ b/dist/Storable/Storable.pm @@ -21,7 +21,7 @@ package Storable; @ISA = qw(Exporter); use vars qw($canonical $forgive_me $VERSION); -$VERSION = '2.43'; +$VERSION = '2.44'; BEGIN { if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) { diff --git a/dist/Storable/Storable.xs b/dist/Storable/Storable.xs index 08641cdd38..f21f053a9d 100644 --- a/dist/Storable/Storable.xs +++ b/dist/Storable/Storable.xs @@ -3469,7 +3469,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; |