entropy_src: add max_event_length variable
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-02 07:35:00 +01:00
parent 56b1773c28
commit aeed19ef40
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -12,6 +12,8 @@ public:
virtual void schedule(accumulator::EventScheduler scheduler) = 0;
virtual void event(accumulator::EventAdderImpl adder) = 0;
static constexpr const std::size_t max_event_length{32};
EntropySrc(const EntropySrc&) = delete;
EntropySrc& operator=(const EntropySrc&) = delete;
~EntropySrc() noexcept;