diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2020-02-21 22:03:05 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2020-02-21 22:03:05 +0100 |
commit | b24e125696a94b6ebdd2262c0c41bf45cbeba23f (patch) | |
tree | 9ebd7fbb438991006ab590dd40f249e39be82e77 /src | |
parent | 73c8596488fd5fd619991f56dae5d22f551b06d9 (diff) | |
download | postgresql-b24e125696a94b6ebdd2262c0c41bf45cbeba23f.tar.gz postgresql-b24e125696a94b6ebdd2262c0c41bf45cbeba23f.zip |
Fix perlcritic warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/msvc/Mkvcbuild.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/msvc/Mkvcbuild.pm b/src/tools/msvc/Mkvcbuild.pm index d6fc1b7d542..727a8fdec9b 100644 --- a/src/tools/msvc/Mkvcbuild.pm +++ b/src/tools/msvc/Mkvcbuild.pm @@ -5,10 +5,11 @@ package Mkvcbuild; # # src/tools/msvc/Mkvcbuild.pm # -use Carp; -use if ($^O eq "MSWin32"), 'Win32'; use strict; use warnings; + +use Carp; +use if ($^O eq "MSWin32"), 'Win32'; use Project; use Solution; use Cwd; @@ -648,7 +649,7 @@ sub mkvcbuild # 'Can't spawn "conftest.exe"'; suppress that. no warnings; - no strict 'subs'; + no strict 'subs'; ## no critic (ProhibitNoStrict) # Disable error dialog boxes like we do in the postmaster. # Here, we run code that triggers relevant errors. |