X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..ab5814bd4ea6117ecf9ac2df328333e89eb45f5f:/src/xbt/string.cpp?ds=sidebyside diff --git a/src/xbt/string.cpp b/src/xbt/string.cpp index f23e4295ff..b286aa8ee3 100644 --- a/src/xbt/string.cpp +++ b/src/xbt/string.cpp @@ -1,25 +1,12 @@ -/* Copyright (c) 2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2015-2023. 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. */ -#include -#include - -#include - #include #include -namespace simgrid { -namespace xbt { - -#if HAVE_MC - -const char string::NUL = '\0'; - -#endif +namespace simgrid::xbt { std::string string_vprintf(const char *fmt, va_list ap) { @@ -28,14 +15,13 @@ std::string string_vprintf(const char *fmt, va_list ap) va_copy(ap2, ap); int size = std::vsnprintf(nullptr, 0, fmt, ap2); va_end(ap2); - if (size < 0) - xbt_die("string_vprintf error"); + xbt_assert(size >= 0, "string_vprintf error"); // Allocate the string and format: std::string res; res.resize(size); - if (size != 0 && std::vsnprintf(&res[0], size + 1, fmt, ap) != size) - xbt_die("string_vprintf error"); + if (size != 0) + xbt_assert(std::vsnprintf(&res[0], size + 1, fmt, ap) == size, "string_vprintf error"); return res; } @@ -55,5 +41,4 @@ std::string string_printf(const char *fmt, ...) return res; } -} -} +} // namespace simgrid::xbt