From: Jesse Luehrs Date: Sun, 3 May 2009 00:21:18 +0000 (-0500) Subject: make Moose::Exporter import strict and warnings X-Git-Tag: 0.78~55 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e2fa092dfbb01567873bb26c858d6a31d60f02cb;p=gitmo%2FMoose.git make Moose::Exporter import strict and warnings --- diff --git a/lib/Moose/Exporter.pm b/lib/Moose/Exporter.pm index 15e8169..6fb3ab9 100644 --- a/lib/Moose/Exporter.pm +++ b/lib/Moose/Exporter.pm @@ -386,6 +386,11 @@ sub _remove_keywords { } } +sub import { + strict->import; + warnings->import; +} + 1; __END__