From: Matthias Maier Date: Wed, 24 Sep 2014 11:28:22 +0000 (+0200) Subject: Workaround for IBM compiler in data_out_base.cc X-Git-Tag: v8.2.0-rc1~130^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F171%2Fhead;p=dealii.git 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. --- 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; }