From: Christian Heinrich Date: Fri, 13 Apr 2018 07:56:18 +0000 (+0200) Subject: [SMPI] Replay: Use MPI_REQUEST_NULL instead of nullptr X-Git-Tag: v3.20~448 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8dcd00f0403f45ab7c10a214ea18d799b1318eb7 [SMPI] Replay: Use MPI_REQUEST_NULL instead of nullptr --- diff --git a/src/smpi/internals/smpi_replay.cpp b/src/smpi/internals/smpi_replay.cpp index 3e4ec9b6b1..72b7be079c 100644 --- a/src/smpi/internals/smpi_replay.cpp +++ b/src/smpi/internals/smpi_replay.cpp @@ -670,7 +670,7 @@ public: // if request is null here, this may mean that a previous test has succeeded // Different times in traced application and replayed version may lead to this // In this case, ignore the extra calls. - if (request != nullptr) { + if (request != MPI_REQUEST_NULL) { TRACE_smpi_testing_in(my_proc_id); MPI_Status status;