aboutsummaryrefslogtreecommitdiff
path: root/Source/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/main.cpp')
-rw-r--r--Source/main.cpp2
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