Keep perl style checker happy

It doesn't like code before "use strict;".
pull/42/head
Andrew Dunstan 7 years ago
parent f6db9f8abf
commit 749cb71de2
  1. 6
      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 = '';

Loading…
Cancel
Save