Fix type of variable

This commit is contained in:
bernatx 2022-07-20 22:16:14 +02:00 committed by bernat
parent e48a88275f
commit 98752b395a
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ namespace multigpu {
boost::asio::ip::tcp::endpoint _endpoint;
std::vector<std::shared_ptr<Primary>> _sessions;
std::shared_ptr<Listener> _listener;
uint _next;
uint32_t _next;
std::unordered_map<Primary *, std::shared_ptr<std::promise<SessionInfo>>> _promises;
PrimaryCommands _commander;
};