From a03cdac0d937a10d6de2a3e6c7d8bb7e6831119d Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 24 Sep 2014 13:28:22 +0200 Subject: [PATCH] Workaround for IBM compiler in data_out_base.cc This is a workaround for the IBM XL compiler as suggested by Kevin Drzycimski on the mailing list. --- 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 9e218d598d..8d5de27b44 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -7953,7 +7953,7 @@ merge (const DataOutReader &source) // adjust patch neighbors for (unsigned int i=old_n_patches; i::faces_per_cell; ++n) - if (patches[i].neighbors[n] != Patch::no_neighbor) + if (patches[i].neighbors[n] != dealii::DataOutBase::Patch::no_neighbor) patches[i].neighbors[n] += old_n_patches; } -- 2.39.5