diff --git a/src/fsfw/util/SeqCountProvider.h b/src/fsfw/util/SeqCountProvider.h index f5c3a5ca..fe16431f 100644 --- a/src/fsfw/util/SeqCountProvider.h +++ b/src/fsfw/util/SeqCountProvider.h @@ -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: