in reply to Another Subroutine Redefined Post
Start deleting lines of code until the warning disappears. I can not reproduce the warning with the code that you have posted.
Inspect %INC to make sure you are looking in all the modules you think you are looking in:
use Data::Dumper; print Dumper(\%INC);
Update: Or try this hack:
for my $file (values %INC) { open my $fh, '<', $file; while (<$fh>) { print "$file: $_" if /\bsub\s+greater\b/ } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Another Subroutine Redefined Post
by Heffstar (Acolyte) on Nov 10, 2009 at 18:30 UTC | |
by toolic (Bishop) on Nov 10, 2009 at 18:48 UTC |