Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill unimplemented declarations.
[simgrid.git] / include / simgrid / s4u / Mailbox.hpp
index d48166dfe38372682dc959ee5db7e2b10c9f5248..a885cbad11ad60279f0f1ba4998a3daf6efd7c22 100644 (file)
@@ -10,7 +10,6 @@
 #include <simgrid/s4u/Actor.hpp>
 #include <simgrid/s4u/Comm.hpp>
 #include <smpi/forward.hpp>
-#include <xbt/string.hpp>
 
 #include <memory>
 #include <string>
@@ -36,7 +35,7 @@ protected:
 
 public:
   /** @brief Retrieves the name of that mailbox as a C++ string */
-  const xbt::string& get_name() const;
+  const std::string& get_name() const;
   /** @brief Retrieves the name of that mailbox as a C string */
   const char* get_cname() const;
 
@@ -126,7 +125,6 @@ public:
   template <typename T> std::unique_ptr<T> get_unique(double timeout) { return std::unique_ptr<T>(get<T>(timeout)); }
 
   void clear();
-  
 };
 
 template <typename T> CommPtr Mailbox::get_async(T** data)