Skip to content

Commit

Permalink
Remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Sep 14, 2016
1 parent 135bba9 commit 63e6b81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/04-nativecall/05-arrays.t
Expand Up @@ -28,7 +28,7 @@ compile_test_lib('05-arrays');
my @rarr := ReturnAStringArray();
is @rarr[0], 'La Trappe', 'returning string array (1)';
is @rarr[1], 'Leffe', 'returning string array (2)';

sub TakeAStringArrayAndReturnTotalLength(CArray[Str]) returns int32 is native("./05-arrays") { * }
my @parr := CArray[Str].new();
@parr[0] = "OMG";
Expand Down Expand Up @@ -110,7 +110,7 @@ compile_test_lib('05-arrays');
@parr[2] = 30;
is TakeAByteArray(@parr), 18, 'byte in position 0..2, C-side';
}

{
sub TakeAByteArray(Buf) returns int32 is native("./05-arrays") { * }
my $buf = buf8.new;
Expand Down

0 comments on commit 63e6b81

Please sign in to comment.