From: Martin Quinson Date: Tue, 10 Jul 2018 05:56:36 +0000 (+0200) Subject: try to fix build with old clangs X-Git-Tag: v3_21~494 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/97b5c8035594b184364701295fe543eeba363e3d?ds=sidebyside try to fix build with old clangs It does not break on my clang version even without this, so other breakage may remain --- diff --git a/teshsuite/simix/stack-overflow/stack-overflow.cpp b/teshsuite/simix/stack-overflow/stack-overflow.cpp index 042af13ecb..427b86690d 100644 --- a/teshsuite/simix/stack-overflow/stack-overflow.cpp +++ b/teshsuite/simix/stack-overflow/stack-overflow.cpp @@ -46,7 +46,7 @@ int main(int argc, char* argv[]) SIMIX_function_register("master", master); SIMIX_create_environment(argv[1]); - simcall_process_create("master", master, NULL, sg_host_by_name("Tremblay"), 0, NULL, NULL); + simcall_process_create(std::string("master"), master, NULL, sg_host_by_name("Tremblay"), 0, NULL, NULL); SIMIX_run(); return 0;