X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ab92608267358b56adf7a803480fa2ad9608ed1b..f9436b840852218b39dce22d6057b6f223168daa:/src/smpi/smpi_static_variables.cpp diff --git a/src/smpi/smpi_static_variables.cpp b/src/smpi/smpi_static_variables.cpp index 0a8b280aa7..7d26e57575 100644 --- a/src/smpi/smpi_static_variables.cpp +++ b/src/smpi/smpi_static_variables.cpp @@ -24,7 +24,7 @@ void smpi_register_static(void* arg, void_f_pvoid_t free_fn) { } void smpi_free_static() { - while (!registered_static_variables_stack.empty()) { + while (not registered_static_variables_stack.empty()) { s_smpi_static_t elm = registered_static_variables_stack.top(); elm.free_fn(elm.ptr); registered_static_variables_stack.pop();