From 1ac32cf1158333bbd82373744b6bf960d074ba0f Mon Sep 17 00:00:00 2001 From: "Jorge J. Perez" Date: Fri, 31 May 2024 02:31:32 -0300 Subject: [PATCH] Fix msvc loss of data warning Signed-off-by: Jorge J. Perez --- plugins/sim_factory/SimFactory.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sim_factory/SimFactory.cc b/plugins/sim_factory/SimFactory.cc index cee409db..8d33ea70 100644 --- a/plugins/sim_factory/SimFactory.cc +++ b/plugins/sim_factory/SimFactory.cc @@ -152,7 +152,7 @@ bool SimFactory::Load(const tinyxml2::XMLElement *_elem) for (const auto &msg : this->worldFactoryMsgs) { - unsigned int timeout = 2000; + uint32_t timeout = 2000; msgs::Boolean rep; bool result;