From 5796459446856dbe6299af963ca53f7e78bea48e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 22 May 2025 12:08:51 -0600 Subject: [PATCH] Make sure files are never truly empty. --- include/deal.II/base/mpi_stub.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/deal.II/base/mpi_stub.h b/include/deal.II/base/mpi_stub.h index 634dd8a484..2d7ffc0b3e 100644 --- a/include/deal.II/base/mpi_stub.h +++ b/include/deal.II/base/mpi_stub.h @@ -22,9 +22,14 @@ // e.g., MPI_Comm in the API. #if defined(DEAL_II_WITH_MPI) + DEAL_II_DISABLE_EXTRA_DIAGNOSTICS # include DEAL_II_ENABLE_EXTRA_DIAGNOSTICS + +DEAL_II_NAMESPACE_OPEN +DEAL_II_NAMESPACE_CLOSE + #else // Without MPI, we would still like to use some constructs with MPI -- 2.39.5