mro compat stuff
[catagits/Catalyst-Runtime.git] / lib / Catalyst / View.pm
index 40ed724..ef5a447 100644 (file)
@@ -1,7 +1,9 @@
 package Catalyst::View;
 
-use strict;
-use base qw/Catalyst::Component/;
+use MRO::Compat;
+use mro 'c3';
+use Moose;
+extends qw/Catalyst::Component/;
 
 =head1 NAME
 
@@ -64,4 +66,7 @@ the same terms as Perl itself.
 
 =cut
 
+no Moose;
+#__PACKAGE__->meta->make_immutable();
+
 1;