From: Rafael Garcia-Suarez Date: Sun, 31 May 2009 14:30:59 +0000 (+0200) Subject: Silence a warning emitted by test added by last commit X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8c1a9f829d3405fb12e6f9bdabc3cc5b28ab7444;p=p5sagit%2Fp5-mst-13.2.git Silence a warning emitted by test added by last commit --- diff --git a/t/op/sort.t b/t/op/sort.t index 7c2098f..4473c32 100755 --- a/t/op/sort.t +++ b/t/op/sort.t @@ -396,6 +396,7 @@ sub ok { main::cmp_ok($_[0],'eq',$_[1],$_[2]); ok "@a", "c b a x", "un-inplace sort with function of lexical 2"; # RT#54758. Git 62b40d2474e7487e6909e1872b6bccdf812c6818 + no warnings 'void'; my @m; push @m, 0 for 1 .. 1024; $#m; @m = sort @m; main::pass("in-place sorting segfault"); }