From 9b8ec318449b0cc70d3e38ff719230343ae41ed9 Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Fri, 3 May 2024 18:18:57 +0200 Subject: [PATCH] Fix missing symbol --- libsrc/core/python_ngcore_export.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libsrc/core/python_ngcore_export.cpp b/libsrc/core/python_ngcore_export.cpp index 4431ea8f..3952d1a1 100644 --- a/libsrc/core/python_ngcore_export.cpp +++ b/libsrc/core/python_ngcore_export.cpp @@ -1,16 +1,13 @@ #include "python_ngcore.hpp" #include "bitarray.hpp" #include "taskmanager.hpp" +#include "ng_mpi.hpp" using namespace ngcore; using namespace std; using namespace pybind11::literals; -namespace ngcore { - NGCORE_API void InitMPI(); -} - PYBIND11_MODULE(pyngcore, m) // NOLINT { try