Author: Whiteknight
Date: Thu Aug 21 16:34:24 2008
New Revision: 30434
Modified:
branches/pdd27mmd/src/pmc/multisub.pmc
Log:
[pdd27mmd] Codingstd fixes. chromatic++
Modified: branches/pdd27mmd/src/pmc/multisub.pmc
==============================================================================
--- branches/pdd27mmd/src/pmc/multisub.pmc (original)
+++ branches/pdd27mmd/src/pmc/multisub.pmc Thu Aug 21 16:34:24 2008
@@ -79,7 +79,7 @@
}
VTABLE PMC *get_pmc() {
- PMC * list = Parrot_mmd_sort_manhattan(INTERP, SELF);
+ PMC *list = Parrot_mmd_sort_manhattan(INTERP, SELF);
if (PMC_IS_NULL(list))
Parrot_ex_throw_from_c_args(INTERP, NULL, 1, "No applicable
methods.\n");
@@ -91,15 +91,15 @@
ResizablePMCArray's VTABLE methods of the same names. Hopefully we
don't need anything beyond that. */
VTABLE PMC *get_pmc_keyed(PMC *key) {
- PMC * list = Parrot_mmd_sort_manhattan(INTERP, SELF);
- if(PMC_IS_NULL(list))
+ PMC *list = Parrot_mmd_sort_manhattan(INTERP, SELF);
+ if (PMC_IS_NULL(list))
Parrot_ex_throw_from_c_args(INTERP, NULL, 1, "No applicable
methods.\n");
return VTABLE_get_pmc_keyed(INTERP, list, key);
}
VTABLE PMC *get_pmc_keyed_string(STRING *s) {
- PMC * list = Parrot_mmd_sort_manhattan(INTERP, SELF);
- if(PMC_IS_NULL(list))
+ PMC *list = Parrot_mmd_sort_manhattan(INTERP, SELF);
+ if (PMC_IS_NULL(list))
Parrot_ex_throw_from_c_args(INTERP, NULL, 1, "No applicable
methods.\n");
return VTABLE_get_pmc_keyed_string(INTERP, SELF, s);
}