Commit b24e1256 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix perlcritic warnings

parent 73c85964
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment