diff HuffmanSet.cpp @ 34:fda70a362ed5

Remove whitespace.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Thu, 06 Sep 2012 21:33:24 +0200
parents b2c2c2bf2bbd
children c52a0627337c
line wrap: on
line diff
--- a/HuffmanSet.cpp	Thu Sep 06 21:32:33 2012 +0200
+++ b/HuffmanSet.cpp	Thu Sep 06 21:33:24 2012 +0200
@@ -20,7 +20,7 @@
 
 BitDecoder* HuffmanSet::createLut(const QMap<QString, uint>& freqTable)
 {
-  QMultiMap<uint, BitDecoder* > freqs;    
+  QMultiMap<uint, BitDecoder* > freqs;
   for(QMap<QString, uint>::const_iterator it = freqTable.begin();
       it != freqTable.end(); ++it) {
     freqs.insert(it.value(), new BitDecoder(it.key()));