perl.cvs.parrot
[Top] [All Lists]

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

Subject: [svn:parrot] r19311 - trunk/src/pmc
From:
Date: Mon, 25 Jun 2007 06:35:27 -0700 PDT
Newsgroups: perl.cvs.parrot

Author: petdance
Date: Mon Jun 25 06:35:24 2007
New Revision: 19311

Modified:
   trunk/src/pmc/default.pmc

Log:
PMCs cannot yet have const parms

Modified: trunk/src/pmc/default.pmc
==============================================================================
--- trunk/src/pmc/default.pmc   (original)
+++ trunk/src/pmc/default.pmc   Mon Jun 25 06:35:24 2007
@@ -608,7 +608,7 @@
 
 /*
 
-=item C<INTVAL is_same(const PMC *value)>
+=item C<INTVAL is_same(PMC *value)>
 
 Returns whether the PMC is numerically equal to C<value>.
 
@@ -616,7 +616,7 @@
 
 */
 
-    INTVAL is_same(const PMC* value) {
+    INTVAL is_same(PMC* value) {
         return SELF == value;
     }
 

<Prev in Thread] Current Thread [Next in Thread>
  • [svn:parrot] r19311 - trunk/src/pmc, petdance <=