make Moose::Exporter import strict and warnings
Jesse Luehrs [Sun, 3 May 2009 00:21:18 +0000 (19:21 -0500)]
lib/Moose/Exporter.pm

index 15e8169..6fb3ab9 100644 (file)
@@ -386,6 +386,11 @@ sub _remove_keywords {
     }
 }
 
+sub import {
+    strict->import;
+    warnings->import;
+}
+
 1;
 
 __END__