diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-06 13:29:10 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:54 +0200 |
commit | 0854ebbc0720c1691f2de661c4ce3467b71746c6 (patch) | |
tree | 6bede8baea394711056db7109f395e71e880e03d /src/randomization/seed_generator.hpp | |
parent | a285df324deb579d262ea7cf484de4d6b11b28e4 (diff) |
refactor: replace unsigned int with uint32_t
Diffstat (limited to 'src/randomization/seed_generator.hpp')
-rw-r--r-- | src/randomization/seed_generator.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/randomization/seed_generator.hpp b/src/randomization/seed_generator.hpp index 238fdbe..1447a8c 100644 --- a/src/randomization/seed_generator.hpp +++ b/src/randomization/seed_generator.hpp @@ -10,7 +10,7 @@ class SeedGenerator : public ISeedGenerator public: explicit SeedGenerator(const std::shared_ptr<std::random_device> &random_device); - [[nodiscard]] unsigned int random_seed() const override; + [[nodiscard]] uint32_t random_seed() const override; private: const std::shared_ptr<std::random_device> &_random_device; |