X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7af5f68e45deae49059e1495630646d0c875a6a5..b67d191c3627cb8e64017cfedcbbbafe9f4dfcc3:/include/simgrid/s4u/mailbox.hpp diff --git a/include/simgrid/s4u/mailbox.hpp b/include/simgrid/s4u/mailbox.hpp index aa5f3278de..3d1b6abd2e 100644 --- a/include/simgrid/s4u/mailbox.hpp +++ b/include/simgrid/s4u/mailbox.hpp @@ -33,7 +33,7 @@ public: ~Mailbox(); protected: - smx_mailbox_t getInferior() { return inferior_; } + smx_mailbox_t getInferior() { return pimpl_; } public: /** Get the name of that mailbox */ @@ -54,7 +54,7 @@ public: private: std::string name_; - smx_mailbox_t inferior_; + smx_mailbox_t pimpl_; static boost::unordered_map *mailboxes; friend s4u::Engine; };