From: Martin Kronbichler Date: Mon, 7 Nov 2016 11:41:25 +0000 (+0100) Subject: Initialize all variables in MatrixFreeFunctions::ShapeInfo X-Git-Tag: v8.5.0-rc1~444^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=580f0189e194e4168c356a54c682b7e17f9e8164;p=dealii.git Initialize all variables in MatrixFreeFunctions::ShapeInfo --- diff --git a/include/deal.II/matrix_free/shape_info.templates.h b/include/deal.II/matrix_free/shape_info.templates.h index 2361beccd5..ffb628a250 100644 --- a/include/deal.II/matrix_free/shape_info.templates.h +++ b/include/deal.II/matrix_free/shape_info.templates.h @@ -40,8 +40,11 @@ namespace internal ShapeInfo::ShapeInfo () : element_type (tensor_general), + fe_degree (numbers::invalid_unsigned_int), n_q_points (0), - dofs_per_cell (0) + dofs_per_cell (0), + n_q_points_face (0), + dofs_per_face (0) {}