]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/commitdiff
Remove trailing whitespace
authorVincent Pit <vince@profvince.com>
Mon, 24 Sep 2012 20:37:36 +0000 (22:37 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 24 Sep 2012 23:24:29 +0000 (01:24 +0200)
lib/Scalar/Vec/Util.pm

index de973414b3d6bccfc480e965aa33d3360266ba15..b282f1a4ca4605a16b8d37659371e3d2432f2106 100644 (file)
@@ -105,7 +105,7 @@ sub vcopy_pp ($$$$$) {
  croak 'Invalid negative offset' if $fs < 0 or $ts < 0;
  croak 'Invalid negative length' if $l  < 0;
  my $step = $ts - $fs;
- if ($step <= 0) { 
+ if ($step <= 0) {
   vec($_[2], $_ + $step, 1) = vec($_[0], $_, 1) for $fs .. $fs + $l - 1;
  } else { # There's a risk of overwriting if $_[0] and $_[2] are the same SV.
   vec($_[2], $_ + $step, 1) = vec($_[0], $_, 1) for reverse $fs .. $fs + $l - 1;