comparison FastBitDecoder.cpp @ 62:247adcbbaf8b

Remove unnecessary includes in .cpp files.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Fri, 14 Sep 2012 20:57:44 +0200
parents c8111de2e0bb
children
comparison
equal deleted inserted replaced
61:e5fa379d4030 62:247adcbbaf8b
1 #include "FastBitDecoder.hpp" 1 #include "FastBitDecoder.hpp"
2 2
3 #include "BitDecoder.hpp" 3 #include "BitDecoder.hpp"
4
5 #include <cassert>
6 4
7 unsigned char FastBitDecoder::getPaddedChar(const BitArray& bits, uint offset) 5 unsigned char FastBitDecoder::getPaddedChar(const BitArray& bits, uint offset)
8 { 6 {
9 unsigned char retVal = 0; 7 unsigned char retVal = 0;
10 size_t n = std::min(8u, bits.size() - offset); 8 size_t n = std::min(8u, bits.size() - offset);