From 328802950be51c950ef10383c032dc398c4bf2a2 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 3 Feb 2004 15:16:24 +0000 Subject: [PATCH] Implement missing default constructor for FiniteElementData. git-svn-id: https://svn.dealii.org/trunk@8387 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_data.cc | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/deal.II/deal.II/source/fe/fe_data.cc b/deal.II/deal.II/source/fe/fe_data.cc index 6ecadf0b5a..70c8c0ad86 100644 --- a/deal.II/deal.II/source/fe/fe_data.cc +++ b/deal.II/deal.II/source/fe/fe_data.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -16,10 +16,19 @@ #include + +template +FiniteElementData::FiniteElementData () +{} + + + template -FiniteElementData::FiniteElementData (const std::vector &dofs_per_object, - const unsigned int n_components, - const unsigned int degree) : +FiniteElementData:: +FiniteElementData (const std::vector &dofs_per_object, + const unsigned int n_components, + const unsigned int degree) + : dofs_per_vertex(dofs_per_object[0]), dofs_per_line(dofs_per_object[1]), dofs_per_quad(dim>1? dofs_per_object[2]:0), -- 2.39.5