in reply to Prototype Mismatch Errors
Looks like two modules are exporting these equally named functions by default, you should definitely decide which one you prefer and block the others!
Date::Format is one of them, POSIX the other one.
> Is it even possible?
Depends on the modules, look into the documentation, normally you say something like use Module qw(func1 func2); to restrict your selection. See use ...
HTH!
Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery
FootballPerl is like chess, only without the dice
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Prototype Mismatch Errors
by haukex (Archbishop) on Aug 08, 2018 at 10:43 UTC |