use default value 0 if arg to reset() is ommited

This commit is contained in:
Ahmet Inan 2018-07-29 08:32:22 +02:00
commit e2def0f3c9

2
crc.hh
View file

@ -29,7 +29,7 @@ public:
}
}
}
void reset(TYPE v)
void reset(TYPE v = 0)
{
crc = v;
}