diff options
author | 2020-01-09 10:24:41 -0800 | |
---|---|---|
committer | 2020-01-09 10:24:41 -0800 | |
commit | e45710b641c01970a1cc9eb2eae244899091106b (patch) | |
tree | fe5b62f2406a915e9026805cd7ed4f102d1552bf /Source/main.cpp | |
parent | bbaf7f627fc272c4d47849f42cadf29231648f5a (diff) | |
parent | 0b25b1b68f1b70e965295505d1503a3e57b6c2cc (diff) | |
download | WarpX-e45710b641c01970a1cc9eb2eae244899091106b.tar.gz WarpX-e45710b641c01970a1cc9eb2eae244899091106b.tar.zst WarpX-e45710b641c01970a1cc9eb2eae244899091106b.zip |
Merge branch 'dev' into elementary_process
Diffstat (limited to 'Source/main.cpp')
-rw-r--r-- | Source/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/main.cpp b/Source/main.cpp index cb183bc8d..19413da7a 100644 --- a/Source/main.cpp +++ b/Source/main.cpp @@ -16,7 +16,7 @@ int main(int argc, char* argv[]) #if defined(_OPENMP) && defined(WARPX_USE_PSATD) int provided; MPI_Init_thread(&argc, &argv, MPI_THREAD_FUNNELED, &provided); - assert(provided >= MPI_THREAD_FUNNELED); + AMREX_ALWAYS_ASSERT(provided >= MPI_THREAD_FUNNELED); #else MPI_Init(&argc, &argv); #endif |