From: wolf Date: Tue, 3 Feb 2004 15:16:24 +0000 (+0000) Subject: Implement missing default constructor for FiniteElementData. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c704e36f3782e50c5ce828157f34bed93bc3b5bd;p=dealii-svn.git Implement missing default constructor for FiniteElementData. git-svn-id: https://svn.dealii.org/trunk@8387 0785d39b-7218-0410-832d-ea1e28bc413d --- 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),