aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap.cpp')
-rw-r--r--src/bootstrap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap.cpp b/src/bootstrap.cpp
index a0d8ab2..ddeba4d 100644
--- a/src/bootstrap.cpp
+++ b/src/bootstrap.cpp
@@ -41,7 +41,7 @@ Container bootstrap()
container.bind<IInputConfigurator>().to<InputConfigurator>();
container.bind<IRandomNumberGeneratorFactory>().to_factory(
- [](const unsigned int &seed)
+ [](const uint32_t &seed)
{
return std::dynamic_pointer_cast<IRandomNumberGenerator>(
std::make_shared<RandomNumberGenerator>(seed));