aboutsummaryrefslogtreecommitdiff
path: root/src/randomization/seed_generator.cpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-06 13:29:10 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:54 +0200
commit0854ebbc0720c1691f2de661c4ce3467b71746c6 (patch)
tree6bede8baea394711056db7109f395e71e880e03d /src/randomization/seed_generator.cpp
parenta285df324deb579d262ea7cf484de4d6b11b28e4 (diff)
refactor: replace unsigned int with uint32_t
Diffstat (limited to 'src/randomization/seed_generator.cpp')
-rw-r--r--src/randomization/seed_generator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/randomization/seed_generator.cpp b/src/randomization/seed_generator.cpp
index fdb2b12..5d51e18 100644
--- a/src/randomization/seed_generator.cpp
+++ b/src/randomization/seed_generator.cpp
@@ -5,7 +5,7 @@ SeedGenerator::SeedGenerator(const std::shared_ptr<std::random_device> &random_d
{
}
-unsigned int SeedGenerator::random_seed() const
+uint32_t SeedGenerator::random_seed() const
{
return (*_random_device)();
}