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 /ext | |
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 'ext')
-rw-r--r-- | ext/B/B.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/B.xs b/ext/B/B.xs index fbe6be6719..e7049f04c2 100644 --- a/ext/B/B.xs +++ b/ext/B/B.xs @@ -21,13 +21,13 @@ typedef FILE * InputStream; static const char* const svclassnames[] = { "B::NULL", - "B::BIND", "B::IV", "B::NV", #if PERL_VERSION <= 10 "B::RV", #endif "B::PV", + "B::INVLIST", "B::PVIV", "B::PVNV", "B::PVMG", |