mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-01-24 13:41:29 -05:00
Simplify excessively idiomatic C-ism.
This commit is contained in:
parent
bd33e652ea
commit
a2df8ea599
@ -59,7 +59,7 @@ public:
|
||||
*/
|
||||
T remainder = crc_in;
|
||||
remainder ^= data << (width() - 8);
|
||||
for(size_t bit=8; bit>0; --bit) {
|
||||
for(size_t bit=0; bit<8; bit++) {
|
||||
if( remainder & top_bit() ) {
|
||||
remainder = (remainder << 1) ^ polynomial;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user