Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Definitely remove deprecated stuff in private area.
[simgrid.git] / src / xbt / dict.cpp
index 8753f297c2a05b0725f11182471bd5ac8e0ddbd8..af97e2d513a656a58d4366c3da4b8b923b7f3c86 100644 (file)
@@ -89,7 +89,7 @@ static void xbt_dict_rehash(xbt_dict_t dict)
   const unsigned oldsize = dict->table_size + 1;
   unsigned newsize = oldsize * 2;
 
-  xbt_dictelm_t* newtable = (xbt_dictelm_t*)xbt_realloc((char*)dict->table, newsize * sizeof(xbt_dictelm_t));
+  auto* newtable = static_cast<xbt_dictelm_t*>(xbt_realloc((char*)dict->table, newsize * sizeof(xbt_dictelm_t)));
   memset(&newtable[oldsize], 0, oldsize * sizeof(xbt_dictelm_t)); /* zero second half */
   newsize--;
   dict->table_size = newsize;