mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Standardize order of use strict and use warnings in Perl code
The standard order in PostgreSQL and other code is use strict first, but some code was uselessly inconsistent about this.
This commit is contained in:
@ -6,8 +6,8 @@
|
||||
# src/backend/parser/check_keywords.pl
|
||||
# Copyright (c) 2009-2020, PostgreSQL Global Development Group
|
||||
|
||||
use warnings;
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
my $gram_filename = $ARGV[0];
|
||||
my $kwlist_filename = $ARGV[1];
|
||||
|
Reference in New Issue
Block a user