diff options
author | 1997-11-30 07:45:47 +0000 | |
---|---|---|
committer | 1997-11-30 07:45:47 +0000 | |
commit | ba47ec9da08b5e716a167fd61325b8edfcb66dd6 (patch) | |
tree | 91bc543f2ed3206add10a699e40e1120ba95f742 /gnu/usr.bin/perl/lib/Tie/Hash.pm | |
parent | verbose eisa/pci (diff) | |
download | wireguard-openbsd-ba47ec9da08b5e716a167fd61325b8edfcb66dd6.tar.xz wireguard-openbsd-ba47ec9da08b5e716a167fd61325b8edfcb66dd6.zip |
perl 5.004_04
Diffstat (limited to 'gnu/usr.bin/perl/lib/Tie/Hash.pm')
-rw-r--r-- | gnu/usr.bin/perl/lib/Tie/Hash.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/lib/Tie/Hash.pm b/gnu/usr.bin/perl/lib/Tie/Hash.pm index 9a9d059a7f7..2117c54c183 100644 --- a/gnu/usr.bin/perl/lib/Tie/Hash.pm +++ b/gnu/usr.bin/perl/lib/Tie/Hash.pm @@ -26,8 +26,8 @@ Tie::Hash, Tie::StdHash - base class definitions for tied hashes package main; - tie %new_hash, NewHash; - tie %new_std_hash, NewStdHash; + tie %new_hash, 'NewHash'; + tie %new_std_hash, 'NewStdHash'; =head1 DESCRIPTION @@ -98,7 +98,7 @@ L<Config> module. While these do not utilize B<Tie::Hash>, they serve as good working examples. =cut - + use Carp; sub new { |