Simplify excessively idiomatic C-ism.

This commit is contained in:
Jared Boone 2015-12-07 15:29:43 -08:00
parent bd33e652ea
commit a2df8ea599

View File

@ -59,7 +59,7 @@ public:
*/ */
T remainder = crc_in; T remainder = crc_in;
remainder ^= data << (width() - 8); remainder ^= data << (width() - 8);
for(size_t bit=8; bit>0; --bit) { for(size_t bit=0; bit<8; bit++) {
if( remainder & top_bit() ) { if( remainder & top_bit() ) {
remainder = (remainder << 1) ^ polynomial; remainder = (remainder << 1) ^ polynomial;
} else { } else {