diff options
author | Zefram <zefram@fysh.org> | 2017-11-28 20:21:36 +0000 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2017-11-28 20:21:36 +0000 |
commit | 869b8c119a7436d3373e1325925a8b753d0e7805 (patch) | |
tree | 3921dc8c6433c9b3af3c73a3726ec713eb1c6f55 /ext/XS-APItest | |
parent | 9e0909b2180c408354ce24b6c742f4b79e783d11 (diff) | |
download | perl-869b8c119a7436d3373e1325925a8b753d0e7805.tar.gz |
remove useless "default" mechanism
Diffstat (limited to 'ext/XS-APItest')
-rw-r--r-- | ext/XS-APItest/t/grok.t | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/XS-APItest/t/grok.t b/ext/XS-APItest/t/grok.t index 4632752b4e..e4eaa4508f 100644 --- a/ext/XS-APItest/t/grok.t +++ b/ext/XS-APItest/t/grok.t @@ -42,9 +42,7 @@ foreach my $leader ('', ' ', ' ') { @NV = qw(18446744073709551616 18446744073709551617 18446744073709551620 18446744073709551624); } - default { - die "Unknown IV size $_"; - } + die "Unknown IV size $_"; } foreach (@UV) { my $string = $leader . $_ . $trailer; |