Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
added circle placement for ns3 wifi nodes
[simgrid.git] / include / xbt / string.hpp
index 01692407da5e0e0558b641bd964fa550181a7a7c..99520e616d76af115dac2fea118e7adc495b9059 100644 (file)
@@ -89,10 +89,8 @@ public:
   string() : string(&NUL, 0) {}
   explicit string(const char* s) : string(s, strlen(s)) {}
   string(string const& s) : string(s.c_str(), s.size()) {}
-  string(string&& s)
+  string(string&& s) noexcept : str(std::move(s.str))
   {
-    str.len    = s.str.len;
-    str.data   = s.str.data;
     s.str.len  = 0;
     s.str.data = &NUL;
   }