From: Arnaud Giersch Date: Thu, 21 Mar 2019 08:29:14 +0000 (+0100) Subject: Uncomment constant definition, even though currently unused. X-Git-Tag: v3_22~49 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c76e1b62a0a5cf047fa5799f8260243de322e930 Uncomment constant definition, even though currently unused. --- diff --git a/src/smpi/include/private.hpp b/src/smpi/include/private.hpp index c588ce00ea..4c6cf916a0 100644 --- a/src/smpi/include/private.hpp +++ b/src/smpi/include/private.hpp @@ -17,7 +17,7 @@ constexpr unsigned MPI_REQ_PERSISTENT = 0x1; constexpr unsigned MPI_REQ_NON_PERSISTENT = 0x2; constexpr unsigned MPI_REQ_SEND = 0x4; constexpr unsigned MPI_REQ_RECV = 0x8; -// constexpr unsigned MPI_REQ_RECV_DELETE = 0x10; +constexpr unsigned MPI_REQ_RECV_DELETE = 0x10; constexpr unsigned MPI_REQ_ISEND = 0x20; constexpr unsigned MPI_REQ_SSEND = 0x40; constexpr unsigned MPI_REQ_PREPARED = 0x80;