From: Nicholas Clark Date: Thu, 14 Apr 2011 19:58:03 +0000 (+0100) Subject: Remove commented out code from the pre-0.72 HV based tracking system. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0b79a9267e0d1bf54ed7b650994d13dc1d1d4070;p=p5sagit%2FDevel-Size.git Remove commented out code from the pre-0.72 HV based tracking system. --- diff --git a/Size.xs b/Size.xs index 08cbb7e..347dd1b 100644 --- a/Size.xs +++ b/Size.xs @@ -797,8 +797,6 @@ size(orig_thing) CODE: { SV *thing = orig_thing; - /* Hash to track our seen pointers */ - //HV *tracking_hash = newHV(); SV *warn_flag; TRACKING *tv; Newz( 0xfc0ff, tv, 1, TRACKING ); @@ -840,8 +838,6 @@ total_size(orig_thing) CODE: { SV *thing = orig_thing; - /* Hash to track our seen pointers */ - //HV *tracking_hash; TRACKING *tv; /* Array with things we still need to do */ AV *pending_array; @@ -864,7 +860,6 @@ CODE: } /* init these after the go_yell above */ - //tracking_hash = newHV(); Newz( 0xfc0ff, tv, 1, TRACKING ); pending_array = newAV();