From: Wolfgang Bangerth Date: Tue, 3 Jun 2025 14:10:15 +0000 (-0600) Subject: Use correct data type. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b24bd7d0c89a3d32b0cee36da849901f9d7a2f3b;p=dealii.git Use correct data type. --- diff --git a/include/deal.II/matrix_free/fe_evaluation_data.h b/include/deal.II/matrix_free/fe_evaluation_data.h index afadfe4946..dcc3babe71 100644 --- a/include/deal.II/matrix_free/fe_evaluation_data.h +++ b/include/deal.II/matrix_free/fe_evaluation_data.h @@ -1710,7 +1710,7 @@ namespace internal AssertDimension(indices.size(), out.size()); AssertDimension(indices.size(), array[0].size()); // set all entries in array to a valid element - int index = 0; + std::size_t index = 0; for (; index < N; ++index) if (indices[index] != numbers::invalid_unsigned_int) break;