From: Florian Ragwitz Date: Sat, 18 Apr 2009 18:19:16 +0000 (+0200) Subject: Explicitly don't inline the constructor to avoid warnings. X-Git-Tag: 0.12~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Types-Structured.git;a=commitdiff_plain;h=b5deb4127dcc9d5d651a8892ce85c07e68dca730 Explicitly don't inline the constructor to avoid warnings. --- diff --git a/lib/MooseX/Meta/TypeConstraint/Structured.pm b/lib/MooseX/Meta/TypeConstraint/Structured.pm index e674f8b..d222fe8 100644 --- a/lib/MooseX/Meta/TypeConstraint/Structured.pm +++ b/lib/MooseX/Meta/TypeConstraint/Structured.pm @@ -353,4 +353,4 @@ it under the same terms as Perl itself. =cut -__PACKAGE__->meta->make_immutable; +__PACKAGE__->meta->make_immutable(inline_constructor => 0);