From fee912f19b62f87d3b02c6c1ca02c70f6d57d8a6 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 21 Feb 2000 08:56:03 +0000 Subject: [PATCH] Use actual definitions of static variables. git-svn-id: https://svn.dealii.org/trunk@2445 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/grid/geometry_info.cc | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/deal.II/deal.II/source/grid/geometry_info.cc b/deal.II/deal.II/source/grid/geometry_info.cc index a5cfea3080..e62b5f4f94 100644 --- a/deal.II/deal.II/source/grid/geometry_info.cc +++ b/deal.II/deal.II/source/grid/geometry_info.cc @@ -3,13 +3,11 @@ #include -// enable these lines for gcc2.95 -// -//const unsigned int GeometryInfo::vertices_per_cell; -//const unsigned int GeometryInfo::lines_per_cell; -//const unsigned int GeometryInfo::quads_per_cell; -//const unsigned int GeometryInfo::hexes_per_cell; -//const unsigned int GeometryInfo::children_per_cell; +const unsigned int GeometryInfo::vertices_per_cell; +const unsigned int GeometryInfo::lines_per_cell; +const unsigned int GeometryInfo::quads_per_cell; +const unsigned int GeometryInfo::hexes_per_cell; +const unsigned int GeometryInfo::children_per_cell; template <> -- 2.39.5