From 08789f1ef831ecedf6f0f3ebf5090dec82f97e75 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 3 Feb 2004 15:18:39 +0000 Subject: [PATCH] Better yet, add explicit initializers to avoid confusion. git-svn-id: https://svn.dealii.org/trunk@8388 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_data.cc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/deal.II/deal.II/source/fe/fe_data.cc b/deal.II/deal.II/source/fe/fe_data.cc index 70c8c0ad86..5eb21bdacd 100644 --- a/deal.II/deal.II/source/fe/fe_data.cc +++ b/deal.II/deal.II/source/fe/fe_data.cc @@ -19,6 +19,20 @@ template FiniteElementData::FiniteElementData () + : + dofs_per_vertex(0), + dofs_per_line(0), + dofs_per_quad(0), + dofs_per_hex(0), + first_line_index(0), + first_quad_index(0), + first_hex_index(0), + first_face_line_index(0), + first_face_quad_index(0), + dofs_per_face(0), + dofs_per_cell (0), + components(0), + degree(0) {} -- 2.39.5