Skip to content

Commit 4c1f42f

Browse files
committed
Keep perl style checker happy
It doesn't like code before "use strict;". (cherry picked from commit ed2c2d0)
1 parent 9a561fd commit 4c1f42f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/catalog/genbki.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
#
1515
#----------------------------------------------------------------------
1616

17+
use strict;
18+
use warnings;
19+
1720
use File::Basename;
1821
use File::Spec;
1922
BEGIN { use lib File::Spec->rel2abs(dirname(__FILE__)); }
2023

2124
use Catalog;
2225

23-
use strict;
24-
use warnings;
25-
2626
my @input_files;
2727
our @include_path;
2828
my $output_path = '';

0 commit comments

Comments
 (0)