From: Dave Rolsky Date: Fri, 2 Sep 2011 18:06:03 +0000 (-0500) Subject: The array instance cannot be inlined - we need to say that explicitly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ea0285985685c4d82d8cce38b1d100bd3e2abcc9;p=gitmo%2FMoose.git The array instance cannot be inlined - we need to say that explicitly --- diff --git a/examples/ArrayBasedStorage.pod b/examples/ArrayBasedStorage.pod index 5c0369c..3577b58 100644 --- a/examples/ArrayBasedStorage.pod +++ b/examples/ArrayBasedStorage.pod @@ -33,6 +33,8 @@ sub clone_instance { $self->bless_instance_structure([ @$instance ]); } +sub is_inlinable { 0 } + # operations on meta instance sub get_slot_index_map { (shift)->{'slot_index_map'} }