X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/19b3962253112b19308537bc2400de141c119d99..a92d7b716f51a53dea7f59db8524d4add713b910:/src/instr/instr_paje_containers.cpp?ds=sidebyside diff --git a/src/instr/instr_paje_containers.cpp b/src/instr/instr_paje_containers.cpp index 9b50d75e26..f024629ae9 100644 --- a/src/instr/instr_paje_containers.cpp +++ b/src/instr/instr_paje_containers.cpp @@ -203,7 +203,7 @@ void PJ_container_free (container_t container) TRACE_paje_dump_buffer(1); //trace my destruction - if (!TRACE_disable_destroy() && container != PJ_container_get_root()){ + if (not TRACE_disable_destroy() && container != PJ_container_get_root()) { //do not trace the container destruction if user requests //or if the container is root new DestroyContainerEvent(container); @@ -245,7 +245,7 @@ void PJ_container_free_all () rootContainer = nullptr; //checks - if (!xbt_dict_is_empty(allContainers)){ + if (not xbt_dict_is_empty(allContainers)) { THROWF(tracing_error, 0, "some containers still present even after destroying all of them"); } }