fix non-mpi

This commit is contained in:
Joachim Schoeberl 2024-11-27 21:29:43 +01:00
parent 14c39f8283
commit ebf4d4d1b8

View File

@ -537,8 +537,8 @@ namespace ngcore
class NgMPI_Requests class NgMPI_Requests
{ {
public: public:
NgMPI_Requests operator+= (NgMPI_Request &&) { ; } NgMPI_Requests & operator+= (NgMPI_Request &&) { return *rhis; }
NgMPI_Requests operator+= (NG_MPI_Request r) { ; } NgMPI_Requests & operator+= (NG_MPI_Request r) { return *this; }
void WaitAll() { ; } void WaitAll() { ; }
int WaitAny() { return 0; } int WaitAny() { return 0; }
}; };