X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP%2FMethod%2FConstructor.pm;h=db506b838bb1d3a1232f5683e8426dda40157db5;hb=34147f49f7fa85afe801d684c3e25322e4a34f61;hp=7212d20f4b918552a3d9f223e9eb53de074d34c4;hpb=f65af096d1abfd83aea3cde248e6a5886aee648c;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Method/Constructor.pm b/lib/Class/MOP/Method/Constructor.pm index 7212d20..db506b8 100644 --- a/lib/Class/MOP/Method/Constructor.pm +++ b/lib/Class/MOP/Method/Constructor.pm @@ -7,7 +7,7 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken', 'looks_like_number'; -our $VERSION = '0.64_04'; +our $VERSION = '0.71_01'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -190,7 +190,7 @@ Class::MOP::Method::Constructor - Method Meta Object for constructors ); # calling the constructor ... - $constructor->body->($metaclass->name, %params); + $constructor->body->execute($metaclass->name, %params); =head1 DESCRIPTION