Bump version to 1.16
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Hash / clear.pm
index 74593a6..ead1656 100644 (file)
@@ -3,7 +3,7 @@ package Moose::Meta::Method::Accessor::Native::Hash::clear;
 use strict;
 use warnings;
 
-our $VERSION = '1.14';
+our $VERSION = '1.16';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -14,6 +14,7 @@ with 'Moose::Meta::Method::Accessor::Native::Hash::Writer' => {
         qw(
             _maximum_arguments
             _inline_optimized_set_new_value
+            _return_value
             )
     ]
 };
@@ -30,6 +31,8 @@ sub _inline_optimized_set_new_value {
     return "$slot_access = {}";
 }
 
+sub _return_value { return q{} }
+
 no Moose::Role;
 
 1;