Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill the now useless type xbt::string
[simgrid.git] / src / s4u / s4u_Mailbox.cpp
index cd8da0d..2caa4ec 100644 (file)
 XBT_LOG_EXTERNAL_CATEGORY(s4u);
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_channel, s4u, "S4U Communication Mailboxes");
 
-namespace simgrid {
-namespace s4u {
+namespace simgrid::s4u {
 
-const xbt::string& Mailbox::get_name() const
+const std::string& Mailbox::get_name() const
 {
   return pimpl_->get_name();
 }
@@ -135,12 +134,12 @@ Mailbox::iprobe(int type, const std::function<bool(void*, void*, kernel::activit
       [this, type, &match_fun, data] { return pimpl_->iprobe(type, match_fun, data); });
 }
 
-void Mailbox::clear() {
-    kernel::actor::simcall_answered([this]() { this->pimpl_->clear(); });
+void Mailbox::clear()
+{
+  kernel::actor::simcall_answered([this]() { this->pimpl_->clear(true); });
 }
 
-} // namespace s4u
-} // namespace simgrid
+} // namespace simgrid::s4u
 
 /* **************************** Public C interface *************************** */
 sg_mailbox_t sg_mailbox_by_name(const char* alias)