in reply to Re^2: use fields;
in thread use fields;
Re-reading the documentation, Perl 5.8.x still uses the pseudo-hash implementation, so I guess you will have to temporarily switch off the warnings for that section of code:
my $self = do { no warnings 'deprecated'; fields::new($class); };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: use fields;
by nite_man (Deacon) on Nov 23, 2004 at 08:28 UTC | |
by Corion (Patriarch) on Nov 23, 2004 at 08:31 UTC | |
by ysth (Canon) on Nov 23, 2004 at 08:46 UTC |