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

mikehh at svn.parrot.org mikehh at svn.parrot.org
Thu Mar 11 09:42:15 UTC 2010


Author: mikehh
Date: Thu Mar 11 09:42:14 2010
New Revision: 44871
URL: https://trac.parrot.org/parrot/changeset/44871

Log:
fix codetest failure - line length

Modified:
   trunk/src/pmc/fixedbooleanarray.pmc

Modified: trunk/src/pmc/fixedbooleanarray.pmc
==============================================================================
--- trunk/src/pmc/fixedbooleanarray.pmc	Thu Mar 11 09:37:59 2010	(r44870)
+++ trunk/src/pmc/fixedbooleanarray.pmc	Thu Mar 11 09:42:14 2010	(r44871)
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2001-2009, Parrot Foundation.
+Copyright (C) 2001-2010, Parrot Foundation.
 $Id$
 
 =head1 NAME
@@ -75,7 +75,8 @@
 
         SET_ATTR_size(INTERP, SELF, size);
         SET_ATTR_resize_threshold(INTERP, SELF, size_in_bytes * BITS_PER_CHAR);
-        SET_ATTR_bit_array(INTERP, SELF, mem_gc_allocate_n_zeroed_typed(INTERP, size_in_bytes, unsigned char));
+        SET_ATTR_bit_array(INTERP, SELF, mem_gc_allocate_n_zeroed_typed(INTERP, size_in_bytes,
+                                                                        unsigned char));
         PObj_custom_destroy_SET(SELF);
     }
 


More information about the parrot-commits mailing list