]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/blobdiff - lib/Scalar/Vec/Util.pm
Remove trailing whitespace
[perl/modules/Scalar-Vec-Util.git] / 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;