X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FEngine.pm;h=8b3a701d57aa0a58926e168ea20754cba000d1f5;hp=71773fefe652f174f77f0c67dd7be20d7761c7f0;hb=0fc2d522eec43202c21e9f0062e43f10db4d9008;hpb=8e061fef6ed2e38808032cbb722098c5c183ec03 diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index 71773fe..8b3a701 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -1,5 +1,6 @@ package Catalyst::Engine; +use Class::C3; use Moose; with 'MooseX::Emulate::Class::Accessor::Fast'; @@ -16,6 +17,8 @@ use Scalar::Util (); has read_length => (is => 'rw'); has read_position => (is => 'rw'); +no Moose; + # Stringify to class use overload '""' => sub { return ref shift }, fallback => 1;