From: Gabriel Corona Date: Fri, 17 Jun 2016 09:26:54 +0000 (+0200) Subject: [s4u] Fix double X-Git-Tag: v3_14~972 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3a0a299cb69d766f851f6a3f629c46c26d1bd9cf?hp=2918cda53052dc99d7c2477218a60000c11281be [s4u] Fix double --- diff --git a/include/simgrid/s4u/actor.hpp b/include/simgrid/s4u/actor.hpp index 53bb726839..e983372ffd 100644 --- a/include/simgrid/s4u/actor.hpp +++ b/include/simgrid/s4u/actor.hpp @@ -189,7 +189,7 @@ public: Actor(const char* name, s4u::Host *host, double killTime, std::function code); Actor(const char* name, s4u::Host *host, std::function code) - : Actor(name, host, -1.0d, std::move(code)) {}; + : Actor(name, host, -1.0, std::move(code)) {}; /** Create an actor using code *