summaryrefslogtreecommitdiff
path: root/ext/B
diff options
context:
space:
mode:
authorYitzchak Scott-Thoennes <sthoenna@efn.org>2004-12-19 15:57:56 -0800
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-01-21 10:26:17 +0000
commita01b8a532e28fdf8a628e0be61983a5719a52753 (patch)
tree03ef28e0c9f10f491d5946120eac3710494a6c42 /ext/B
parent4810286bd9ecd424ad73c2c65693d1330ac2773f (diff)
downloadperl-a01b8a532e28fdf8a628e0be61983a5719a52753.tar.gz
doc SVt_PVLV <=> SVt_PVGV change version in B.pm
Message-ID: <20041220075754.GA800@efn.org> p4raw-id: //depot/perl@23841
Diffstat (limited to 'ext/B')
-rw-r--r--ext/B/B.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm
index 977cb4193e..b70c7105b9 100644
--- a/ext/B/B.pm
+++ b/ext/B/B.pm
@@ -36,7 +36,7 @@ use strict;
@B::PVIV::ISA = qw(B::PV B::IV);
@B::PVNV::ISA = qw(B::PV B::NV);
@B::PVMG::ISA = 'B::PVNV';
-# Change in the inheritance hierarchy post 5.8
+# Change in the inheritance hierarchy post 5.9.0
@B::PVLV::ISA = $] > 5.009 ? 'B::GV' : 'B::PVMG';
@B::BM::ISA = 'B::PVMG';
@B::AV::ISA = 'B::PVMG';
@@ -530,8 +530,8 @@ using this module.
B::IV, B::NV, B::RV, B::PV, B::PVIV, B::PVNV, B::PVMG, B::BM, B::PVLV,
B::AV, B::HV, B::CV, B::GV, B::FM, B::IO. These classes correspond in
the obvious way to the underlying C structures of similar names. The
-inheritance hierarchy mimics the underlying C "inheritance". For 5.9 and
-later this is:
+inheritance hierarchy mimics the underlying C "inheritance". For 5.9.1
+and later this is:
B::SV
|
@@ -557,8 +557,8 @@ later this is:
B::FM
-For 5.8 and earlier, PVLV is a direct subclass of PVMG, so the base of this
-diagram is
+For 5.9.0 and earlier, PVLV is a direct subclass of PVMG, so the base
+of this diagram is
|
B::PVMG