From d5efa8e9e0ca1858f268755af2ab98838d82ce78 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 4 Nov 2017 11:08:11 +0100 Subject: [PATCH] cosmetics --- src/simix/smx_context.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simix/smx_context.cpp b/src/simix/smx_context.cpp index 67cb04a7f5..8ccd6f3e42 100644 --- a/src/simix/smx_context.cpp +++ b/src/simix/smx_context.cpp @@ -105,13 +105,13 @@ void SIMIX_context_mod_init() #endif #if defined(__APPLE__) || defined(__NetBSD__) - if (context_factory_name == std::string("thread") && xbt_cfg_get_string("smpi/privatization") == "dlopen") { + if (context_factory_name == "thread" && xbt_cfg_get_string("smpi/privatization") == "dlopen") { XBT_WARN("dlopen+thread broken on Apple and BSD. Switching to raw contexts."); context_factory_name = "raw"; } #endif #if defined(__FreeBSD__) - if (context_factory_name == std::string("thread") && xbt_cfg_get_string("smpi/privatization") != "no") { + if (context_factory_name == "thread" && xbt_cfg_get_string("smpi/privatization") != "no") { XBT_WARN("mmap broken on FreeBSD, but dlopen+thread broken too. Switching to dlopen+raw contexts."); context_factory_name = "raw"; } -- 2.20.1