diff --git a/crc.hh b/crc.hh index 3ff8ede..2c96761 100644 --- a/crc.hh +++ b/crc.hh @@ -33,6 +33,10 @@ public: { crc = v; } + TYPE operator()() + { + return crc; + } TYPE operator()(bool data) { TYPE tmp = crc ^ data;