From b87154223b001882c762764a093da0f35583275b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Thu, 18 Aug 2022 16:08:41 +0200 Subject: [PATCH] Restore Non-MPI Builds Commit 371b2592f misordered the closing brace of a namespace and the conditional declarations dependent upon MPI availability. This commit restores the expected order and fixes non-MPI builds. --- opm/simulators/linalg/ParallelIstlInformation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/simulators/linalg/ParallelIstlInformation.cpp b/opm/simulators/linalg/ParallelIstlInformation.cpp index 7cd233d26..79ac900e0 100644 --- a/opm/simulators/linalg/ParallelIstlInformation.cpp +++ b/opm/simulators/linalg/ParallelIstlInformation.cpp @@ -350,6 +350,6 @@ INSTANCE(int) INSTANCE(float) INSTANCE(std::size_t) -#endif +} // namespace Opm -} +#endif // HAVE_MPI && HAVE_DUNE_ISTL