[svn:parrot] r41665 - branches/pcc_reapply/src/pmc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Sun Oct 4 02:01:12 UTC 2009
Author: mikehh
Date: Sun Oct 4 02:01:12 2009
New Revision: 41665
URL: https://trac.parrot.org/parrot/changeset/41665
Log:
codetest failure - trailing spaces
Modified:
branches/pcc_reapply/src/pmc/cpointer.pmc
Modified: branches/pcc_reapply/src/pmc/cpointer.pmc
==============================================================================
--- branches/pcc_reapply/src/pmc/cpointer.pmc Sun Oct 4 01:55:02 2009 (r41664)
+++ branches/pcc_reapply/src/pmc/cpointer.pmc Sun Oct 4 02:01:12 2009 (r41665)
@@ -190,7 +190,7 @@
VTABLE INTVAL get_integer() {
Parrot_CPointer_attributes * const data = PARROT_CPOINTER(SELF);
-
+
if (Parrot_str_equal(interp, data->sig, CONST_STRING(interp, "I"))) {
INTVAL * const int_pointer = (INTVAL *) data->pointer;
return *int_pointer;
@@ -405,7 +405,7 @@
VTABLE PMC *get_pmc() {
const Parrot_CPointer_attributes * const data = PARROT_CPOINTER(SELF);
-
+
if (Parrot_str_equal(interp, data->sig, CONST_STRING(interp, "I"))) {
INTVAL * const int_pointer = (INTVAL *) data->pointer;
return get_integer_pmc(INTERP, *int_pointer);
More information about the parrot-commits
mailing list