Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b24e125

Browse files
committed
Fix perlcritic warnings
1 parent 73c8596 commit b24e125

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/tools/msvc/Mkvcbuild.pm

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ package Mkvcbuild;
55
#
66
# src/tools/msvc/Mkvcbuild.pm
77
#
8-
use Carp;
9-
use if ($^O eq "MSWin32"), 'Win32';
108
use strict;
119
use warnings;
10+
11+
use Carp;
12+
use if ($^O eq "MSWin32"), 'Win32';
1213
use Project;
1314
use Solution;
1415
use Cwd;
@@ -648,7 +649,7 @@ sub mkvcbuild
648649
# 'Can't spawn "conftest.exe"'; suppress that.
649650
no warnings;
650651

651-
no strict 'subs';
652+
no strict 'subs'; ## no critic (ProhibitNoStrict)
652653

653654
# Disable error dialog boxes like we do in the postmaster.
654655
# Here, we run code that triggers relevant errors.

0 commit comments

Comments
 (0)