comparison TestBitArray.cpp @ 53:bd7ca4ceefec

Fix whitespace.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Thu, 13 Sep 2012 23:36:16 +0200
parents 0bd3c1c46251
children 247adcbbaf8b
comparison
equal deleted inserted replaced
52:725b0d776f3c 53:bd7ca4ceefec
133 BOOST_REQUIRE_EQUAL(bits.getPaddedChar(7), 3u); 133 BOOST_REQUIRE_EQUAL(bits.getPaddedChar(7), 3u);
134 134
135 bits = BitDecoder::bitsFromString("10000001"); 135 bits = BitDecoder::bitsFromString("10000001");
136 BOOST_REQUIRE_EQUAL(bits.size(), 8u); 136 BOOST_REQUIRE_EQUAL(bits.size(), 8u);
137 BOOST_REQUIRE_EQUAL(bits.getPaddedChar(0), 129u); 137 BOOST_REQUIRE_EQUAL(bits.getPaddedChar(0), 129u);
138 138
139 bits = BitDecoder::bitsFromString("010000001"); 139 bits = BitDecoder::bitsFromString("010000001");
140 BOOST_REQUIRE_EQUAL(bits.size(), 9u); 140 BOOST_REQUIRE_EQUAL(bits.size(), 9u);
141 BOOST_REQUIRE_EQUAL(bits.getPaddedChar(1), 129u); 141 BOOST_REQUIRE_EQUAL(bits.getPaddedChar(1), 129u);
142 142
143 bits = BitDecoder::bitsFromString("0010000001"); 143 bits = BitDecoder::bitsFromString("0010000001");