diff options
author | Andrew Dunstan | 2020-04-13 15:55:45 +0000 |
---|---|---|
committer | Andrew Dunstan | 2020-04-13 15:55:45 +0000 |
commit | 7be5d8df1f74b78620167d3abf32ee607e728919 (patch) | |
tree | 030ea8b9fe1360b7670277c0af44e028de652497 /doc/src | |
parent | 8930e43ecd3f683c457865131d7a932401a2188f (diff) |
Use perl warnings pragma consistently
We've had a mixture of the warnings pragma, the -w switch on the shebang
line, and no warnings at all. This patch removes the -w swicth and add
the warnings pragma to all perl sources missing it. It raises the
severity of the TestingAndDebugging::RequireUseWarnings perlcritic
policy to level 5, so that we catch any future violations.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/mk_feature_tables.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/mk_feature_tables.pl b/doc/src/sgml/mk_feature_tables.pl index 476e50e66d0..ee158cb1969 100644 --- a/doc/src/sgml/mk_feature_tables.pl +++ b/doc/src/sgml/mk_feature_tables.pl @@ -1,8 +1,9 @@ -# /usr/bin/perl -w +# /usr/bin/perl # doc/src/sgml/mk_feature_tables.pl use strict; +use warnings; my $yesno = $ARGV[0]; |