some additional notes

This commit is contained in:
Robin Müller 2023-07-19 23:24:43 +02:00
parent 273fd3ebfd
commit 42c215ef70
Signed by: muellerr
GPG Key ID: A649FB78196E3849
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ class SeqCountProvider : public ProvidesSeqCountIF {
public:
[[nodiscard]] unsigned int bitWidth() const override { return sizeof(T) * 8; }
uint64_t get() override { return counter; }
// I'm also abusing the primitive C variable overflow wrap around here.
void increment() override { counter++; }
private: