From: Wolfgang Bangerth Date: Thu, 20 Feb 2003 17:58:31 +0000 (+0000) Subject: Work around a bug in present gcc 3.4 CVS. X-Git-Tag: v8.0.0~16870 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3843c7b5d01d6e2f79e363173a7d95412745bd80;p=dealii.git Work around a bug in present gcc 3.4 CVS. git-svn-id: https://svn.dealii.org/trunk@7206 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 d830740156..9b9b75104e 100644 --- a/deal.II/deal.II/source/fe/fe.cc +++ b/deal.II/deal.II/source/fe/fe.cc @@ -405,11 +405,11 @@ FiniteElementBase::memory_consumption () const { return (sizeof(FiniteElementData) + MemoryConsumption:: - memory_consumption, sizeof(restriction)/sizeof(restriction[0])> - (restriction)+ - MemoryConsumption::memory_consumption - , sizeof(prolongation)/sizeof(prolongation[0])> - (prolongation) + + memory_consumption, + GeometryInfo::children_per_cell>(restriction)+ + MemoryConsumption:: + memory_consumption, + GeometryInfo::children_per_cell>(prolongation) + MemoryConsumption::memory_consumption (interface_constraints) + MemoryConsumption::memory_consumption (system_to_component_table) + MemoryConsumption::memory_consumption (face_system_to_component_table) +