Load mro directly if Perl is recent enough (Nicholas Clark)
Shawn M Moore [Tue, 10 Feb 2009 18:45:53 +0000 (18:45 +0000)]
Changes
lib/Mouse/Util.pm

diff --git a/Changes b/Changes
index d2bf576..4f7561b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Mouse
 
+0.17
+    * Load mro directly if Perl is recent enough (Nicholas Clark)
+
 0.16 Mon Feb 9 20:56:27 2009
     * Implement get_all_method_names
 
index dc8c27a..d8b93e2 100644 (file)
@@ -14,6 +14,7 @@ our %EXPORT_TAGS = (
 BEGIN {
     my $impl;
     if ($] >= 5.009_005) {
+        require mro;
         $impl = \&mro::get_linear_isa;
     } else {
         my $loaded = do {