X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d6d03a0a88c2673c9e5c604d63912b77bc17fdd4..0dda9bcd2d7df2c8141a8170a7cb8fe20746b4a9:/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();