From 7f5821cd02b687ce8b645aac4b4946e9a9ea07a1 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 28 Feb 2015 11:09:42 -0500 Subject: [PATCH] Remove use of `DEAL_II_COMPILER_SUPPORTS_MPI`. This macro was removed in favor of `DEAL_II_WITH_MPI` in early 2015; see `doc/news/changes.h` for more information. --- source/base/data_out_base.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc index 5749190fb7..cd72d947a7 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -7196,7 +7196,7 @@ void DataOutBase::write_hdf5_parallel (const std::vector > & (void)comm; AssertThrow(false, ExcMessage ("HDF5 support is disabled.")); #else -#ifndef DEAL_II_COMPILER_SUPPORTS_MPI +#ifndef DEAL_II_WITH_MPI // verify that there are indeed // patches to be written out. most // of the times, people just forget -- 2.39.5