in reply to How to located cause of 'Subroutine SomeSubName redefined...' warnings
#!/usr/bin/perl use strict; use warnings; use Scalar::Util qw(looks_like_number); sub looks_like_number($) { 1; }
It may be innocuous, but chances are good that the subroutines are not identical. A simple file search for sub someSubNameHere will likely show you all occurrences and lead you to the appropriate solution.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to located cause of 'Subroutine SomeSubName redefined...' warnings
by Anonymous Monk on Dec 10, 2010 at 19:28 UTC |