]> granicus.if.org Git - postgresql/commitdiff
Keep perl style checker happy
authorAndrew Dunstan <andrew@dunslane.net>
Tue, 5 Feb 2019 20:16:55 +0000 (15:16 -0500)
committerAndrew Dunstan <andrew@dunslane.net>
Tue, 5 Feb 2019 20:19:08 +0000 (15:19 -0500)
It doesn't like code before "use strict;".

src/backend/catalog/genbki.pl

index b71437850134e6d0a2f1ad9e29613f5452ad5466..76dd5bbb6ac9b24f616880ff796f27710b98f3cb 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;
 our @include_path;
 my $output_path = '';