Skip to content
Snippets Groups Projects
Commit a2d35454 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Fixed compiling problem in release mode.

parent 8b79fef4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment