]> ruderich.org/simon Gitweb - blhc/blhc.git/commitdiff
Remove unused function array_equal()
authorSimon Ruderich <simon@ruderich.org>
Sat, 28 Nov 2020 10:29:01 +0000 (11:29 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 28 Nov 2020 10:29:01 +0000 (11:29 +0100)
Unused since 42b57fd ("Fix another Ada false positive for format flags",
2016-09-10)

bin/blhc

index 2ea54d4e8f35bf2e0bd60dafd96ab078e44b2b93..140d2adcf2df7ad80c0bc2f8cfdc4d832c055ecd 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -341,20 +341,6 @@ my $option_color;
 
 # FUNCTIONS
 
-# Only works for single-level arrays with no undef values. Thanks to perlfaq4.
-sub array_equal {
-    my ($first_ref, $second_ref) = @_;
-
-    return 0 if scalar @{$first_ref} != scalar @{$second_ref};
-
-    my $length = scalar @{$first_ref};
-    for (my $i = 0; $i < $length; $i++) {
-        return 0 if $first_ref->[$i] ne $second_ref->[$i];
-    }
-
-    return 1;
-}
-
 sub error_flags {
     my ($message, $missing_flags_ref, $flag_renames_ref, $line, $number) = @_;