in reply to Re: Re: AUTOLOAD inheritance
in thread AUTOLOAD inheritance
This will get called in Abigail-II's step 4, preventing the warning from step 5.sub AUTOLOAD { my $name = our $AUTOLOAD; $name =~ s/.*:://; # lose package name my $target = "DynaLoader::$name"; goto &$target; }
|
|---|