From: Martin Quinson Date: Sun, 9 Oct 2016 09:17:17 +0000 (+0200) Subject: fix compilation on windows, bummer X-Git-Tag: v3_14~353 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8eb0cf0b6993e174df58607e9492a134b85a4669 fix compilation on windows, bummer --- diff --git a/src/simix/smx_global.cpp b/src/simix/smx_global.cpp index bfb56d5f0f..dd161f1117 100644 --- a/src/simix/smx_global.cpp +++ b/src/simix/smx_global.cpp @@ -177,7 +177,7 @@ XBT_PUBLIC(void) set_maestro(std::function code) void SIMIX_set_maestro(void (*code)(void*), void* data) { #ifdef _WIN32 - INFO("WARNING, SIMIX_set_maestro is believed to not work on windows. Please help us investigating this issue if you need that feature"); + XBT_INFO("WARNING, SIMIX_set_maestro is believed to not work on windows. Please help us investigating this issue if you need that feature"); #endif maestro_code = std::bind(code, data); }