in reply to Prototype mismatch: sub main::LC_ALL: none vs ()
Yes, don't import the constants from both modules. In fact, don't export them from either if you don't use them.
The convention is:
use Module; # Default imports. Avoid this. use Module qw( LIST TO IMPORT ); # Can be empty. use Module ( LIST TO IMPORT ); # Same thing. Can be empty.
|
|---|