[svn:parrot] r45028 - in trunk/src: . pmc

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Thu Mar 18 21:06:56 UTC 2010


Author: jkeenan
Date: Thu Mar 18 21:06:55 2010
New Revision: 45028
URL: https://trac.parrot.org/parrot/changeset/45028

Log:
[codingstd]  Make two files pass linelength.t.

Modified:
   trunk/src/pmc.c
   trunk/src/pmc/orderedhash.pmc

Modified: trunk/src/pmc.c
==============================================================================
--- trunk/src/pmc.c	Thu Mar 18 21:01:36 2010	(r45027)
+++ trunk/src/pmc.c	Thu Mar 18 21:06:55 2010	(r45028)
@@ -582,7 +582,8 @@
     PMC *const classobj = interp->vtables[base_type]->pmc_class;
 
     if (!PMC_IS_NULL(classobj) && PObj_is_class_TEST(classobj)) {
-        PMC * const initial = Parrot_pmc_new(interp, Parrot_get_ctx_HLL_type(interp, enum_class_Integer));
+        PMC * const initial =
+          Parrot_pmc_new(interp, Parrot_get_ctx_HLL_type(interp, enum_class_Integer));
         VTABLE_set_integer_native(interp, initial, init);
         VTABLE_instantiate(interp, classobj, initial);
         /* XXX Falls through to end of function without returning */

Modified: trunk/src/pmc/orderedhash.pmc
==============================================================================
--- trunk/src/pmc/orderedhash.pmc	Thu Mar 18 21:01:36 2010	(r45027)
+++ trunk/src/pmc/orderedhash.pmc	Thu Mar 18 21:06:55 2010	(r45028)
@@ -382,7 +382,8 @@
     }
 
     VTABLE PMC *get_pmc_keyed_str(STRING *key) {
-        PMC * const pkey = Parrot_pmc_new(interp, Parrot_get_ctx_HLL_type(interp, enum_class_String));
+        PMC * const pkey =
+            Parrot_pmc_new(interp, Parrot_get_ctx_HLL_type(interp, enum_class_String));
         VTABLE_set_string_native(INTERP, pkey, key);
         return STATICSELF.get_pmc_keyed(pkey);
     }


More information about the parrot-commits mailing list