Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
namespacing cleanups
[simgrid.git] / src / kernel / EngineImpl.cpp
index 07e0673..24459fa 100644 (file)
@@ -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<std::string> 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<std::string> args) {
-    return simgrid::xbt::wrap_main(code, std::move(args));
+    return xbt::wrap_main(code, std::move(args));
   };
 }