From a2d3545456abc886f1cd016eb73ef4bc03111499 Mon Sep 17 00:00:00 2001 From: Thomas Witkowski <thomas.witkowski@gmx.de> Date: Mon, 29 Oct 2012 06:32:05 +0000 Subject: [PATCH] Fixed compiling problem in release mode. --- AMDiS/src/parallel/MeshDistributor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AMDiS/src/parallel/MeshDistributor.cc b/AMDiS/src/parallel/MeshDistributor.cc index 88aff704..8ca851aa 100644 --- a/AMDiS/src/parallel/MeshDistributor.cc +++ b/AMDiS/src/parallel/MeshDistributor.cc @@ -1747,7 +1747,7 @@ namespace AMDiS { ParallelDebug::testGlobalIndexByCoords(*this); } #else - for (int i = 0; i < static_cast<int>(dofsMaps.size()); i++) { + for (int i = 0; i < static_cast<int>(dofMaps.size()); i++) { vector<const FiniteElemSpace*>& dofMapSpaces = dofMaps[i]->getFeSpaces(); for (int j = 0; j < static_cast<int>(dofMapSpaces.size()); j++) @@ -1760,7 +1760,7 @@ namespace AMDiS { Parameters::get(name + "->write parallel debug file", tmp); if (tmp) ParallelDebug::writeDebugFile(feSpaces[feSpaces.size() - 1], - *(dofMaps[0]) + *(dofMaps[0]), debugOutputDir + "mpi-dbg", "dat"); #endif -- GitLab