From: Nicholas Cantrell Date: Thu, 15 Aug 2024 22:26:34 +0000 (-0600) Subject: removed (void) occurrences from source/fe/fe_face.cc X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17543%2Fhead;p=dealii.git removed (void) occurrences from source/fe/fe_face.cc --- diff --git a/source/fe/fe_face.cc b/source/fe/fe_face.cc index 8b50fc9c76..f624baf989 100644 --- a/source/fe/fe_face.cc +++ b/source/fe/fe_face.cc @@ -449,7 +449,6 @@ FE_FaceQ::compare_for_domination( const unsigned int codim) const { Assert(codim <= dim, ExcImpossibleInDim(dim)); - (void)codim; // vertex/line/face/cell domination // -------------------------------- @@ -579,9 +578,6 @@ FE_FaceQ<1, spacedim>::get_subface_interpolation_matrix( FullMatrix &interpolation_matrix, const unsigned int face_no) const { - (void)x_source_fe; - (void)face_no; - Assert(interpolation_matrix.n() == this->n_dofs_per_face(face_no), ExcDimensionMismatch(interpolation_matrix.n(), this->n_dofs_per_face(face_no))); @@ -834,7 +830,6 @@ FE_FaceP::compare_for_domination( const unsigned int codim) const { Assert(codim <= dim, ExcImpossibleInDim(dim)); - (void)codim; // vertex/line/face/cell domination // -------------------------------- @@ -956,7 +951,6 @@ FE_FaceP::get_subface_interpolation_matrix( v_in(k) = this->poly_space.compute_value(i, p); } const double result = H.least_squares(v_out, v_in); - (void)result; Assert(result < 1e-12, FETools::ExcLeastSquaresError(result)); for (unsigned int j = 0; j < source_fe->n_dofs_per_face(face_no); ++j)