diff options
Diffstat (limited to 'src/randomization/seed_generator.hpp')
-rw-r--r-- | src/randomization/seed_generator.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/randomization/seed_generator.hpp b/src/randomization/seed_generator.hpp index 1447a8c..087ad6b 100644 --- a/src/randomization/seed_generator.hpp +++ b/src/randomization/seed_generator.hpp @@ -8,9 +8,10 @@ class SeedGenerator : public ISeedGenerator { public: - explicit SeedGenerator(const std::shared_ptr<std::random_device> &random_device); + explicit SeedGenerator( + const std::shared_ptr<std::random_device> &random_device) noexcept; - [[nodiscard]] uint32_t random_seed() const override; + [[nodiscard]] uint32_t random_seed() const noexcept override; private: const std::shared_ptr<std::random_device> &_random_device; |