summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan2019-02-05 20:16:55 +0000
committerAndrew Dunstan2019-02-05 20:18:53 +0000
commit749cb71de2d6217ef2f4ca76aa8461e4a7275f4c (patch)
treedb0441ef6ec1cdf772cec5a8910764df88d13413
parentf6db9f8abfd6a46f5b58423d8cef2568bf945a0b (diff)
Keep perl style checker happy
It doesn't like code before "use strict;".
-rw-r--r--src/backend/catalog/genbki.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/genbki.pl b/src/backend/catalog/genbki.pl
index acddef31cc4..8b6db2f0acf 100644
--- a/src/backend/catalog/genbki.pl
+++ b/src/backend/catalog/genbki.pl
@@ -14,15 +14,15 @@
#
#----------------------------------------------------------------------
+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 = '';