Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix MC
[simgrid.git] / src / s4u / s4u_mailbox.cpp
index f4c43dc..000f0de 100644 (file)
@@ -50,7 +50,7 @@ void Mailbox::setReceiver(Actor actor) {
 }
 /** @brief get the receiver (process associated to the mailbox) */
 Actor Mailbox::receiver() {
-  return Actor(pimpl_->permanent_receiver);
+  return Actor(pimpl_->permanent_receiver.get());
 }
 
 }