Merge pull request #3679 from akva2/fix_serial_build_3671

fix: serial build after PR #3671
This commit is contained in:
Bård Skaflestad 2021-11-09 17:01:31 +01:00 committed by GitHub
commit fcb6ee60fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,12 @@ void eclStateBroadcast(Parallel::Communication comm, EclipseState& eclState, Sc
template <class T>
void eclBroadcast(Parallel::Communication comm, T& );
void eclBroadcast(Parallel::Communication, T& )
#if HAVE_MPI
;
#else
{}
#endif
} // end namespace Opm