diff options
author | 2020-01-08 12:54:45 -0800 | |
---|---|---|
committer | 2020-01-08 12:54:45 -0800 | |
commit | 0b25b1b68f1b70e965295505d1503a3e57b6c2cc (patch) | |
tree | 27b671391c031d89bc2a74cade27c8bf1895775a /Source/main.cpp | |
parent | 26b239cb3737eab49301f5543bf15bc17e20bd1c (diff) | |
parent | a98a04ac6dafcd6c10c4b947081db6b8349c2c79 (diff) | |
download | WarpX-0b25b1b68f1b70e965295505d1503a3e57b6c2cc.tar.gz WarpX-0b25b1b68f1b70e965295505d1503a3e57b6c2cc.tar.zst WarpX-0b25b1b68f1b70e965295505d1503a3e57b6c2cc.zip |
Merge pull request #603 from atmyers/bugfix
fix new compliation error with USE_PSATD=TRUE
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 |