diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-01 18:34:41 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-01 18:34:41 +0000 |
commit | 475342a6d5f74335e2bdfa64bd71f39289320205 (patch) | |
tree | fab7566350d719b51095369676644c6ec89a3cf0 /ext/B | |
parent | 4584684cd9409a5028e679de2f80cf97a3a728bd (diff) | |
download | perl-475342a6d5f74335e2bdfa64bd71f39289320205.tar.gz |
fix defined(@foo) encarpments
p4raw-id: //depot/perl@3848
Diffstat (limited to 'ext/B')
-rw-r--r-- | ext/B/B/C.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/B/C.pm b/ext/B/B/C.pm index dd4db037a7..39a78c98e6 100644 --- a/ext/B/B/C.pm +++ b/ext/B/B/C.pm @@ -1207,7 +1207,7 @@ sub mark_package { no strict 'refs'; $unused_sub_packages{$package} = 1; - if (defined(@{$package.'::ISA'})) + if (@{$package.'::ISA'}) { foreach my $isa (@{$package.'::ISA'}) { |