generator: add time_to_reseed() prototype
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-04 06:41:12 +01:00
parent 554030bbaa
commit cc26b654d4
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -26,6 +26,8 @@ public:
auto reseed(const std::string& s) -> void;
auto time_to_reseed() const -> bool;
auto is_seeded() const -> bool {
return !(this->G.ctr == 0x00);
};