From 70f37c6e57ea5e5e32ae29272de2691802522ddb Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Wed, 18 Jan 2012 13:34:24 -0800 Subject: [PATCH] overload.pm: Smaller indents for long lines --- lib/overload.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/overload.pm b/lib/overload.pm index 749f731..90463b3 100644 --- a/lib/overload.pm +++ b/lib/overload.pm @@ -1043,12 +1043,12 @@ Note that it is probably meaningless to call the functions overload::constant() and overload::remove_constant() from anywhere but import() and unimport() methods. From these methods they may be called as - sub import { - shift; - return unless @_; - die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant'; - overload::constant integer => sub {Math::BigInt->new(shift)}; - } + sub import { + shift; + return unless @_; + die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant'; + overload::constant integer => sub {Math::BigInt->new(shift)}; + } =head1 IMPLEMENTATION -- 2.7.4