X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/336a8849b0b57d576c5772a217ad13d0b8c9cc42..e6ca184e99d50d0ee8fe405a83ee5277e2ecfce6:/src/mc/mc_pair.cpp diff --git a/src/mc/mc_pair.cpp b/src/mc/mc_pair.cpp index dcbff99685..afed72aa13 100644 --- a/src/mc/mc_pair.cpp +++ b/src/mc/mc_pair.cpp @@ -4,6 +4,9 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +#include +#include + #include "src/mc/mc_liveness.h" #include "src/mc/mc_private.h" @@ -11,7 +14,7 @@ extern "C" { mc_pair_t MC_pair_new() { - mc_pair_t p = NULL; + mc_pair_t p = nullptr; p = xbt_new0(s_mc_pair_t, 1); p->num = ++mc_stats->expanded_pairs; p->exploration_started = 0; @@ -22,12 +25,12 @@ mc_pair_t MC_pair_new() void MC_pair_delete(mc_pair_t p) { - p->automaton_state = NULL; + p->automaton_state = nullptr; if(p->visited_pair_removed) MC_state_delete(p->graph_state, 1); xbt_dynar_free(&(p->atomic_propositions)); xbt_free(p); - p = NULL; + p = nullptr; } }