mirror of
https://github.com/postgres/postgres.git
synced 2026-02-27 03:40:28 -05:00
Keep perl style checker happy
It doesn't like code before "use strict;".
This commit is contained in:
parent
46b4540969
commit
99eb3bba64
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
my $output_path = '';
|
||||
my $major_version;
|
||||
|
|
|
|||
Loading…
Reference in a new issue