8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c8596 commit b24e125Copy full SHA for b24e125
src/tools/msvc/Mkvcbuild.pm
@@ -5,10 +5,11 @@ package Mkvcbuild;
5
#
6
# src/tools/msvc/Mkvcbuild.pm
7
8
-use Carp;
9
-use if ($^O eq "MSWin32"), 'Win32';
10
use strict;
11
use warnings;
+
+use Carp;
12
+use if ($^O eq "MSWin32"), 'Win32';
13
use Project;
14
use Solution;
15
use Cwd;
@@ -648,7 +649,7 @@ sub mkvcbuild
648
649
# 'Can't spawn "conftest.exe"'; suppress that.
650
no warnings;
651
- no strict 'subs';
652
+ no strict 'subs'; ## no critic (ProhibitNoStrict)
653
654
# Disable error dialog boxes like we do in the postmaster.
655
# Here, we run code that triggers relevant errors.
0 commit comments