diff FastBitDecoder.hpp @ 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 c8111de2e0bb
children
line wrap: on
line diff
--- a/FastBitDecoder.hpp	Fri Sep 14 21:10:03 2012 +0200
+++ b/FastBitDecoder.hpp	Fri Sep 14 22:50:45 2012 +0200
@@ -12,7 +12,8 @@
   unsigned char numBits[N];
   QString* data[N];
 
-  static unsigned char getPaddedChar(const BitArray& bitArray, uint offset = 0);
+  static unsigned char getPaddedChar(const BitArray& bitArray,
+				     uint offset = 0);
   static BitArray removeFirst(const BitArray& bits);
 
   void fill();
@@ -33,7 +34,8 @@
     uint n = bits.size();
     //Just a qualified overestimate guess on what we will need.
     combined.reserve(n/4);
-    for (uint decodedBits = 0; decodedBits < n; decodedBits += decode(combined, bits, decodedBits));
+    for (uint decodedBits = 0; decodedBits < n;
+	 decodedBits += decode(combined, bits, decodedBits));
     combined.squeeze();
     return combined;
   }