X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/12459ed00fdc525ec6e524555dfe80ce7737bab7..cc2b1c368ba0d6b499b4f65db23d9f0b6d098aac:/include/xbt/string.hpp diff --git a/include/xbt/string.hpp b/include/xbt/string.hpp index 8ae6756303..a4624489fb 100644 --- a/include/xbt/string.hpp +++ b/include/xbt/string.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2022. 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. */ @@ -31,13 +31,13 @@ namespace xbt { * * @ingroup XBT_str */ -XBT_PUBLIC std::string string_printf(const char* fmt, ...); +XBT_PUBLIC std::string string_printf(const char* fmt, ...) XBT_ATTRIB_PRINTF(1, 2); /** Create a C++ string from a C-style format * * @ingroup XBT_str */ -XBT_PUBLIC std::string string_vprintf(const char* fmt, va_list ap); +XBT_PUBLIC std::string string_vprintf(const char* fmt, va_list ap) XBT_ATTRIB_PRINTF(1, 0); #if SIMGRID_HAVE_MC @@ -101,7 +101,7 @@ 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) noexcept : str(std::move(s.str)) + string(string&& s) noexcept : str(s.str) { s.str.len = 0; s.str.data = &NUL; @@ -145,7 +145,7 @@ public: // Capacity size_t size() const { return str.len; } size_t length() const { return str.len; } - bool empty() const { return str.len != 0; } + bool empty() const { return str.len == 0; } void shrink_to_fit() { /* Being there, but doing nothing */} // Element access @@ -174,7 +174,7 @@ public: return data()[i]; } // Conversion - static string_data& to_string_data(string& s) { return s.str; } + static const string_data& to_string_data(const string& s) { return s.str; } operator std::string() const { return std::string(this->c_str(), this->size()); } // Iterators