mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-14 12:08:40 +00:00
Simplify excessively idiomatic C-ism.
This commit is contained in:
parent
bd33e652ea
commit
a2df8ea599
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user