From 6151d30ead48b8cdec346a0e4547997091420f8f Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Thu, 20 Jul 2017 14:59:29 +0200 Subject: [PATCH] [PL] use GlobalIndexType instead of std::size_t --- ProcessLib/ProcessOutput.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ProcessLib/ProcessOutput.cpp b/ProcessLib/ProcessOutput.cpp index 4f35ad6f4b1..7f90dcacb11 100644 --- a/ProcessLib/ProcessOutput.cpp +++ b/ProcessLib/ProcessOutput.cpp @@ -135,8 +135,7 @@ void doProcessOutput(std::string const& file_name, var.fcts.eval_field(x, dof_table, result_cache); // Copy result - for (std::size_t i = 0; i < mesh.getNumberOfNodes(); ++i) - { + for (GlobalIndexType i = 0; i < nodal_values.size(); ++i) { assert(!std::isnan(nodal_values[i])); (*result)[i] = nodal_values[i]; } @@ -155,7 +154,7 @@ void doProcessOutput(std::string const& file_name, var.fcts.eval_residuals(x, dof_table, result_cache); // Copy result - for (std::size_t i = 0; i < mesh.getNumberOfElements(); ++i) + for (GlobalIndexType i = 0; i < residuals.size(); ++i) { assert(!std::isnan(residuals[i])); (*result)[i] = residuals[i]; -- GitLab