summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-07-07 09:10:40 -0500
committerJesse Luehrs <doy@tozt.net>2011-07-07 09:10:40 -0500
commit9992481c4477bc9855f79b6c252c236bf2e88ca6 (patch)
treecc9d62aa416912ac579aa954039b27b3daa50c2b /lib
parent19e79470e7b6e4e654520fce7bb02d09caeb8a5e (diff)
downloadsmartmatch-engine-rjbs-9992481c4477bc9855f79b6c252c236bf2e88ca6.tar.gz
smartmatch-engine-rjbs-9992481c4477bc9855f79b6c252c236bf2e88ca6.zip
add perl version dependency
Diffstat (limited to 'lib')
-rw-r--r--lib/smartmatch.pm1
-rw-r--r--lib/smartmatch/engine/core.pm1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/smartmatch.pm b/lib/smartmatch.pm
index 505b7c8..071e4ea 100644
--- a/lib/smartmatch.pm
+++ b/lib/smartmatch.pm
@@ -1,6 +1,7 @@
package smartmatch;
use strict;
use warnings;
+use 5.010;
# ABSTRACT: pluggable smart matching backends
use parent 'DynaLoader';
diff --git a/lib/smartmatch/engine/core.pm b/lib/smartmatch/engine/core.pm
index cad2e5c..8edd7d6 100644
--- a/lib/smartmatch/engine/core.pm
+++ b/lib/smartmatch/engine/core.pm
@@ -1,6 +1,7 @@
package smartmatch::engine::core;
use strict;
use warnings;
+use 5.010;
use B;
use Hash::Util::FieldHash qw(idhash);