From: Arnaud Giersch Date: Mon, 18 Feb 2019 17:24:59 +0000 (+0100) Subject: Make cleanupSurf() private. X-Git-Tag: v3_22~301 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/721ce3a9bda40b178bb97e61f831056bb050ac51 Make cleanupSurf() private. --- diff --git a/src/kernel/activity/CommImpl.hpp b/src/kernel/activity/CommImpl.hpp index 715483a39a..f64dc44f33 100644 --- a/src/kernel/activity/CommImpl.hpp +++ b/src/kernel/activity/CommImpl.hpp @@ -17,6 +17,7 @@ namespace activity { class XBT_PUBLIC CommImpl : public ActivityImpl { ~CommImpl() override; + void cleanupSurf(); public: enum class Type { SEND = 0, RECEIVE, READY, DONE }; @@ -30,7 +31,6 @@ public: void finish() override; void cancel(); double remains(); - void cleanupSurf(); // FIXME: make me protected CommImpl::Type type; /* Type of the communication (SIMIX_COMM_SEND or SIMIX_COMM_RECEIVE) */ smx_mailbox_t mbox = nullptr; /* Rendez-vous where the comm is queued */