Skip to content

Commit

Permalink
Fix msvc warning (#250)
Browse files Browse the repository at this point in the history
Signed-off-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
azeey authored and Crola1702 committed May 28, 2024
1 parent 61eaf37 commit e2a18dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ ManagerPrivate::ManagerPrivate()
const auto pid_seed = std::hash<std::thread::id>()(
std::this_thread::get_id());
std::seed_seq seed_value{time_seed, pid_seed};
std::vector<size_t> seeds(1);
std::vector<std::uint32_t> seeds(1);
seed_value.generate(seeds.begin(), seeds.end());
math::Rand::Seed(seeds[0]);
}
Expand Down

0 comments on commit e2a18dd

Please sign in to comment.