[libclass-virtual-perl] 01/11: Avoiding base, it has had bugs in the past.
dom at earth.li
dom at earth.li
Wed Aug 23 14:00:16 UTC 2017
This is an automated email from the git hooks/post-receive script.
dom pushed a commit to tag v0.06
in repository libclass-virtual-perl.
commit fcf621849708739b118c3254d7c63fd8bd088943
Author: Michael G. Schwern <schwern at pobox.com>
Date: Mon Oct 20 05:13:05 2003 +0000
Avoiding base, it has had bugs in the past.
git-svn-id: file:///Users/schwern/tmp/svn/CPAN/Class-Virtual/trunk@2279 8151f2b9-fde8-0310-94fd-f048d12aab9e
---
lib/Class/Virtual.pm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/lib/Class/Virtual.pm b/lib/Class/Virtual.pm
index cc51669..b4c8b3a 100644
--- a/lib/Class/Virtual.pm
+++ b/lib/Class/Virtual.pm
@@ -1,15 +1,16 @@
package Class::Virtual;
use strict;
-use vars qw($VERSION);
-$VERSION = '0.03';
+use vars qw($VERSION @ISA);
+$VERSION = '0.04';
use Carp::Assert;
use Class::ISA;
# Class::ISA doesn't export?!
*self_and_super_path = \&Class::ISA::self_and_super_path;
-use base qw(Class::Data::Inheritable);
+use Class::Data::Inheritable;
+ at ISA = qw(Class::Data::Inheritable);
__PACKAGE__->mk_classdata('__Virtual_Methods');
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libclass-virtual-perl.git
More information about the Pkg-perl-cvs-commits
mailing list