From: Peter Rabbitson Date: Fri, 23 Dec 2011 15:09:06 +0000 (+0100) Subject: Explicitly require Role::Tiny in Role::Tiny::With (RT#70446) X-Git-Tag: v0.009014~18 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8b14bafdaa5eb53e394069d298f8a488c3aa9b83;p=gitmo%2FMoo.git Explicitly require Role::Tiny in Role::Tiny::With (RT#70446) --- diff --git a/Changes b/Changes index 01d5a6b..ba4b3c5 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ + - Explicitly require Role::Tiny in Role::Tiny::With (RT#70446) + 0.009013 - 2011-12-23 - fix up Class::XSAccessor version check to be more robust - improved documentation diff --git a/lib/Role/Tiny/With.pm b/lib/Role/Tiny/With.pm index 29b46d2..4b568ea 100644 --- a/lib/Role/Tiny/With.pm +++ b/lib/Role/Tiny/With.pm @@ -2,6 +2,7 @@ package Role::Tiny::With; use strict; use warnings FATAL => 'all'; +use Role::Tiny (); use Exporter 'import'; our @EXPORT = qw( with );