From 3a0a299cb69d766f851f6a3f629c46c26d1bd9cf Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Fri, 17 Jun 2016 11:26:54 +0200 Subject: [PATCH] [s4u] Fix double --- include/simgrid/s4u/actor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 * -- 2.20.1