Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
added circle placement for ns3 wifi nodes
[simgrid.git] / include / xbt / string.hpp
index a8f202076fae6298518ba0a5a273691bc7afa390..99520e616d76af115dac2fea118e7adc495b9059 100644 (file)
@@ -89,9 +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        = std::move(s.str);
     s.str.len  = 0;
     s.str.data = &NUL;
   }