load overload.pm explicitly for overload::StrVal
Matt S Trout [Sun, 15 Jul 2012 23:41:48 +0000 (23:41 +0000)]
Changes
lib/Method/Generate/Accessor.pm

diff --git a/Changes b/Changes
index 5bb07aa..ced936d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+  - load overload.pm explicitly for overload::StrVal
+
 0.091013 - 2012-07-15
   - useful and detailed errors for coerce in attrib generation
 
index d12af58..0918912 100644 (file)
@@ -6,6 +6,7 @@ use base qw(Moo::Object);
 use Sub::Quote;
 use B 'perlstring';
 use Scalar::Util 'blessed';
+use overload ();
 BEGIN {
   our $CAN_HAZ_XS =
     !$ENV{MOO_XS_DISABLE}