From: Rafael Garcia-Suarez Date: Fri, 2 Jan 2009 10:40:48 +0000 (+0100) Subject: Factorize numeric constant for "overloading" lexical hint X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=effb3d11767a16df2fa0fbc159836c966b80ba88;p=p5sagit%2Fp5-mst-13.2.git Factorize numeric constant for "overloading" lexical hint --- diff --git a/lib/overloading.pm b/lib/overloading.pm index 5f3b84c..e84708d 100644 --- a/lib/overloading.pm +++ b/lib/overloading.pm @@ -5,6 +5,8 @@ use Carp (); our $VERSION = '0.01'; +my $HINT_NO_AMAGIC = 0x01000000; # see perl.h + require 5.011000; sub _ops_to_nums { @@ -26,18 +28,18 @@ sub import { if ( $^H{overloading} !~ /[^\0]/ ) { delete $^H{overloading}; - $^H &= ~0x01000000; + $^H &= ~$HINT_NO_AMAGIC; } } else { delete $^H{overloading}; - $^H &= ~0x01000000; + $^H &= ~$HINT_NO_AMAGIC; } } sub unimport { my ( $class, @ops ) = @_; - if ( exists $^H{overloading} or not $^H & 0x01000000 ) { + if ( exists $^H{overloading} or not $^H & $HINT_NO_AMAGIC ) { if ( @ops ) { vec($^H{overloading} ||= '', $_, 1) = 1 for _ops_to_nums(@ops); } else { @@ -45,7 +47,7 @@ sub unimport { } } - $^H |= 0x01000000; + $^H |= $HINT_NO_AMAGIC; } 1;