Unverified Commit ed452c36 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

synchronize exception based and non-exception based code paths

parent e6a8f3c8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@ int main(int argc, char **argv)
  } catch(LAMMPSAbortException &ae) {
    MPI_Abort(ae.universe, 1);
  } catch(LAMMPSException &e) {
    MPI_Barrier(MPI_COMM_WORLD);
    MPI_Finalize();
    exit(1);
  }