summaryrefslogtreecommitdiff
path: root/bytecode.pl
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-15 17:43:27 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-15 17:43:27 +0000
commit1b11e67edbe89713905c9ffc189c0c9564ca5406 (patch)
tree4044a8fa467fedeccf78fa24d52fc4240d3bbb94 /bytecode.pl
parent345599ca7248bba771c8a9cadc2422a744a61ff2 (diff)
downloadperl-1b11e67edbe89713905c9ffc189c0c9564ca5406.tar.gz
s/use vars/our/ (from Gisle Aas)
p4raw-id: //depot/perl@5105
Diffstat (limited to 'bytecode.pl')
-rw-r--r--bytecode.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bytecode.pl b/bytecode.pl
index 00df48b957..0ffe8e4443 100644
--- a/bytecode.pl
+++ b/bytecode.pl
@@ -47,7 +47,7 @@ package B::Asmdata;
use Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(%insn_data @insn_name @optype @specialsv_name);
-use vars qw(%insn_data @insn_name @optype @specialsv_name);
+our(%insn_data, @insn_name, @optype, @specialsv_name);
EOT
print ASMDATA_PM <<"EOT";