Try not propagating error status from MPI_Finalize

This commit is contained in:
Paul Romano 2018-04-25 22:26:15 -05:00
parent f528cbca97
commit 8f77f7ba06

View file

@ -44,6 +44,6 @@ int main(int argc, char* argv[]) {
// If MPI is in use and enabled, terminate it
#ifdef MPI
err = MPI_Finalize();
MPI_Finalize();
#endif
}