From f362f917a0872a2d1394ce2c10d4813934398e70 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Wed, 15 Mar 2017 17:40:49 +0100 Subject: [PATCH] fix windows build --- include/simgrid/s4u/Actor.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/simgrid/s4u/Actor.hpp b/include/simgrid/s4u/Actor.hpp index c7acc5b97a..72a5c6e565 100644 --- a/include/simgrid/s4u/Actor.hpp +++ b/include/simgrid/s4u/Actor.hpp @@ -294,10 +294,10 @@ namespace this_actor { XBT_PUBLIC(int) pid(); /** @brief Returns the PPID of the current actor. */ - int ppid(); + XBT_PUBLIC(int) ppid(); /** @brief Returns the name of the current actor. */ - std::string name(); + XBT_PUBLIC(std::string) name(); }; /** @} */ -- 2.20.1