+ - When using the tie() fallback ensure we do not obliterate a
+ foreign tie()
+ - Better document how to disable the tie() fallback
+
[0.20_01] (the "mst made me do it" release)
- Only invoke the deleted sub stashing if we run udner a debugger
(avoid runtime penalty of Sub::Name/Sub::Identify)
BEGIN {
+ use warnings;
+ use strict;
+
# when changing also change in Makefile.PL
my $b_h_eos_req = '0.07';
{
package namespace::clean::_TieHintHash;
+ use warnings;
+ use strict;
+
use base 'Tie::ExtraHash';
}
{
package namespace::clean::_ScopeGuard;
+ use warnings;
+ use strict;
+
sub arm { bless [ $_[1] ] }
sub DESTROY { $_[0]->[0]->() }