Skip to content

Commit

Permalink
Use builtin::reftype in ext/
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Dec 14, 2021
1 parent bf65ee6 commit 8afefe8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ext/Hash-Util-FieldHash/lib/Hash/Util/FieldHash.pm
Expand Up @@ -2,9 +2,9 @@ package Hash::Util::FieldHash;

use strict;
use warnings;
use Scalar::Util qw( reftype);
use builtin qw(reftype);

our $VERSION = '1.23';
our $VERSION = '1.24';

use Exporter 'import';
our %EXPORT_TAGS = (
Expand Down
4 changes: 2 additions & 2 deletions ext/Hash-Util/lib/Hash/Util.pm
Expand Up @@ -6,7 +6,7 @@ use Carp;
use warnings;
no warnings 'uninitialized';
use warnings::register;
use Scalar::Util qw(reftype);
use builtin qw(reftype);

require Exporter;
our @EXPORT_OK = qw(
Expand Down Expand Up @@ -41,7 +41,7 @@ our @EXPORT_OK = qw(
BEGIN {
# make sure all our XS routines are available early so their prototypes
# are correctly applied in the following code.
our $VERSION = '0.26';
our $VERSION = '0.27';
require XSLoader;
XSLoader::load();
}
Expand Down

0 comments on commit 8afefe8

Please sign in to comment.