Minor cleanup and Changes
Peter Rabbitson [Thu, 25 Nov 2010 18:03:18 +0000 (18:03 +0000)]
Changes
lib/Class/Accessor/Grouped.pm

diff --git a/Changes b/Changes
index bb1ce41..b77689a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Class::Accessor::Grouped.
 
+    - Major cleanup and optimization of code (evaled coderef sharing)
+    - Module can now operate in PurePerl environments with 100%
+      compatibility (including proper naming of generated coderefs)
 
 0.09008 Sun Oct 11 07:41:56 2010
     - Put back a private undocumented method that the DBIC-CDBI compat
index 8eee167..653ee53 100644 (file)
@@ -500,6 +500,7 @@ BEGIN {
   local $@;
   my $err;
 
+
   $err = eval { require Sub::Name; 1; } ? undef : do {
     delete $INC{'Sub/Name.pm'};   # because older perls suck
     $@;
@@ -685,6 +686,7 @@ $gen_accessor = sub {
     my $src = $accessor_maker_cache->{source}{$type}{$group}{$field} ||=
       $maker_templates->{$type}{pp_code}->($group, $field);
 
+    no warnings 'redefine';
     local $@ if __CAG_UNSTABLE_DOLLARAT;
     eval "sub ${fq_name}{$src}";