mirror of
https://github.com/postgres/postgres.git
synced 2026-04-04 16:55:45 -04:00
Keep perl style checker happy
It doesn't like code before "use strict;".
This commit is contained in:
parent
f6db9f8abf
commit
749cb71de2
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;
|
||||
our @include_path;
|
||||
my $output_path = '';
|
||||
|
|
|
|||
Loading…
Reference in a new issue