X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/f5336c506a2c288f6a4a9ed84ecb21b12a22a2dd..6d4c5d60667c9b096a969e8a438c6fd4d8484cd1:/process.cpp?ds=sidebyside diff --git a/process.cpp b/process.cpp index 04c08c0..0f7380c 100644 --- a/process.cpp +++ b/process.cpp @@ -37,7 +37,7 @@ process::process(int argc, char* argv[]) if (argc < 2 || !(std::istringstream(argv[1]) >> real_load)) throw std::invalid_argument("bad or missing initial load parameter"); - double iload = trunc(real_load); + double iload = std::trunc(real_load); if (opt::integer_transfer && real_load != iload) { XBT_WARN("Initial load %g is not an integer. Truncate it.", real_load);