Keep perl style checker happy
authorAndrew Dunstan <[email protected]>
Tue, 5 Feb 2019 20:16:55 +0000 (15:16 -0500)
committerAndrew Dunstan <[email protected]>
Tue, 5 Feb 2019 20:16:55 +0000 (15:16 -0500)
It doesn't like code before "use strict;".

src/backend/catalog/genbki.pl

index a0479aaa150d44ec21ce826ff82129008faf9c94..be81094ffb6235068ae803a2ad2f4cab797e3ea8 100644 (file)
 #
 #----------------------------------------------------------------------
 
+use strict;
+use warnings;
+
 use File::Basename;
 use File::Spec;
 BEGIN  { use lib File::Spec->rel2abs(dirname(__FILE__)); }
 
 use Catalog;
 
-use strict;
-use warnings;
-
 my @input_files;
 my $output_path = '';
 my $major_version;