From: Wolfgang Bangerth Date: Thu, 25 Aug 2005 15:19:53 +0000 (+0000) Subject: Assert a dummy initialization to a copy constructor that shouldn't be X-Git-Tag: v8.0.0~13258 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00011ac2390de9095d66cd8523e71fe7a3cfa80d;p=dealii.git Assert a dummy initialization to a copy constructor that shouldn't be used. Avoids an error with gcc 3.3. git-svn-id: https://svn.dealii.org/trunk@11329 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe.cc b/deal.II/deal.II/source/fe/fe.cc index 6747e01832..81eaf2ff58 100644 --- a/deal.II/deal.II/source/fe/fe.cc +++ b/deal.II/deal.II/source/fe/fe.cc @@ -203,7 +203,8 @@ template FiniteElement::FiniteElement (const FiniteElement &) : Subscriptor(), - FiniteElementData() + FiniteElementData(), + cached_primitivity (false) { Assert (false, ExcMessage ("Finite element objects don't support copying "