X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/477803ce8d1dd56ab650ff948266bc201cfceca9..ca4cb4ea923e4856691f88688189a7e6d0a27c98:/include/xbt/string.hpp diff --git a/include/xbt/string.hpp b/include/xbt/string.hpp index 46063e37a4..89311f0846 100644 --- a/include/xbt/string.hpp +++ b/include/xbt/string.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -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) : str(std::move(s.str)) { - str.len = s.str.len; - str.data = s.str.data; s.str.len = 0; s.str.data = &NUL; }