From 516c089c4273729fe9e8d77115aa6f158b867f82 Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Wed, 27 Nov 2024 21:55:11 +0100 Subject: [PATCH] Fix build error --- libsrc/core/mpi_wrapper.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/core/mpi_wrapper.hpp b/libsrc/core/mpi_wrapper.hpp index f6e70dab..c7dfc53a 100644 --- a/libsrc/core/mpi_wrapper.hpp +++ b/libsrc/core/mpi_wrapper.hpp @@ -537,7 +537,7 @@ namespace ngcore class NgMPI_Requests { public: - NgMPI_Requests & operator+= (NgMPI_Request &&) { return *rhis; } + NgMPI_Requests & operator+= (NgMPI_Request &&) { return *this; } NgMPI_Requests & operator+= (NG_MPI_Request r) { return *this; } void WaitAll() { ; } int WaitAny() { return 0; }