Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix compilation on windows, bummer
authorMartin Quinson <martin.quinson@loria.fr>
Sun, 9 Oct 2016 09:17:17 +0000 (11:17 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sun, 9 Oct 2016 09:17:17 +0000 (11:17 +0200)
src/simix/smx_global.cpp

index bfb56d5..dd161f1 100644 (file)
@@ -177,7 +177,7 @@ XBT_PUBLIC(void) set_maestro(std::function<void()> 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);
 }