Skip to content

Commit

Permalink
Add strict to XSLoader_pm.PL
Browse files Browse the repository at this point in the history
  • Loading branch information
Leont authored and jkeenan committed Jun 20, 2021
1 parent 650b523 commit 63e9fab
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions dist/XSLoader/XSLoader_pm.PL
@@ -1,4 +1,6 @@
use strict;
use warnings;

use Config;
# We require DynaLoader to make sure that mod2fname is loaded
eval { require DynaLoader };
Expand All @@ -9,11 +11,12 @@ print OUT <<'EOT';
# Generated from XSLoader_pm.PL (resolved %Config::Config value)
# This file is unique for every OS
package XSLoader;
use strict;
no strict 'refs';
$VERSION = "0.30"; # remember to update version in POD!
package XSLoader;
#use strict;
our $VERSION = "0.31"; # remember to update version in POD!
package DynaLoader;
Expand Down Expand Up @@ -252,7 +255,7 @@ XSLoader - Dynamically load C libraries into Perl code
=head1 VERSION
Version 0.30
Version 0.31
=head1 SYNOPSIS
Expand Down

0 comments on commit 63e9fab

Please sign in to comment.