From: Johannes Heinz <43043310+jh66637@users.noreply.github.com> Date: Thu, 23 May 2024 15:46:51 +0000 (+0200) Subject: replace invalid unsigned ints X-Git-Tag: v9.6.0-rc1~232^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47e78a955f2a7f1f75341e760cc59100de9e9be7;p=dealii.git replace invalid unsigned ints --- diff --git a/include/deal.II/matrix_free/fe_remote_evaluation.h b/include/deal.II/matrix_free/fe_remote_evaluation.h index 930dd9ef17..4272efb2b4 100644 --- a/include/deal.II/matrix_free/fe_remote_evaluation.h +++ b/include/deal.II/matrix_free/fe_remote_evaluation.h @@ -1208,6 +1208,12 @@ namespace Utilities // with the communication objects. FERemoteEvaluationCommunicator remote_communicator; + // if no quadrature size is set, an empty quadrature is considered + std::replace(global_quadrature_sizes.begin(), + global_quadrature_sizes.end(), + numbers::invalid_unsigned_int, + 0u); + remote_communicator.reinit_faces(comm_objects, face_batch_range, global_quadrature_vector);