[svn:parrot] r40716 - trunk/src/pmc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sat Aug 22 14:49:16 UTC 2009


Author: NotFound
Date: Sat Aug 22 14:49:15 2009
New Revision: 40716
URL: https://trac.parrot.org/parrot/changeset/40716

Log:
[cage] delete destroy vtable function in Integer PMC, fperrad++

Modified:
   trunk/src/pmc/integer.pmc

Modified: trunk/src/pmc/integer.pmc
==============================================================================
--- trunk/src/pmc/integer.pmc	Sat Aug 22 09:29:44 2009	(r40715)
+++ trunk/src/pmc/integer.pmc	Sat Aug 22 14:49:15 2009	(r40716)
@@ -55,10 +55,6 @@
 
 Initializes the integer with a default value of C<0>.
 
-=item C<void destroy()>
-
-Destroys this PMC.
-
 =cut
 
 */
@@ -94,10 +90,6 @@
             (Parrot_Integer_attributes *)PMC_data(SELF);
 
         attrs->iv      = 0;
-        PObj_active_destroy_SET(SELF);
-    }
-
-    VTABLE void destroy() {
     }
 
 /*


More information about the parrot-commits mailing list