diff BitArray.cpp @ 64:b9515dc35fe4

Make sure no file has greater linewidth than 80.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Fri, 14 Sep 2012 22:50:45 +0200
parents 247adcbbaf8b
children bc55cbd827bf
line wrap: on
line diff
--- a/BitArray.cpp	Fri Sep 14 21:10:03 2012 +0200
+++ b/BitArray.cpp	Fri Sep 14 22:50:45 2012 +0200
@@ -5,7 +5,8 @@
   delete bits;
 }
 
-BitArray::BitArray(const BitArray& other) : size_(other.size()), bits(new uchar[NUMCHARS(size_)])
+BitArray::BitArray(const BitArray& other)
+  : size_(other.size()), bits(new uchar[NUMCHARS(size_)])
 {
   memcpy(bits, other.bits, NUMCHARS(size_));
 }