Subject: | Wishlist: respect :hireswallclock for drop in compatibiilty |
I wish I could upgrade Benchmark code with a simple
s/Benchmark/Benchmark::Forking/ but it fails if I have :hireswallclock
in the Benchmark import list.
It would be great if Benchmark::Forking could detect it and pass it through.
My workaround was to load Benchmark first:
use Benchmark qw/:hireswallclock/;
use Benchmark::Forking qw/ ... /;
If you don't implement it, perhaps you could document the workaround
instead for the next clueless fellow. :-)
Thanks for a great module!
David