X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c317a567f6e72c7e5619b9a636373f6b6fa8f2b6..96143e570f085e4217506ca72245a522fd5c24e1:/src/kernel/EngineImpl.cpp diff --git a/src/kernel/EngineImpl.cpp b/src/kernel/EngineImpl.cpp index 07e067317c..24459fa638 100644 --- a/src/kernel/EngineImpl.cpp +++ b/src/kernel/EngineImpl.cpp @@ -51,7 +51,7 @@ void EngineImpl::load_deployment(const std::string& file) void EngineImpl::register_function(const std::string& name, xbt_main_func_t code) { simix_global->registered_functions[name] = [code](std::vector args) { - return simgrid::xbt::wrap_main(code, std::move(args)); + return xbt::wrap_main(code, std::move(args)); }; } @@ -65,7 +65,7 @@ void EngineImpl::register_function(const std::string& name, void (*code)(std::ve void EngineImpl::register_default(xbt_main_func_t code) { simix_global->default_function = [code](std::vector args) { - return simgrid::xbt::wrap_main(code, std::move(args)); + return xbt::wrap_main(code, std::move(args)); }; }