From: wolf Date: Mon, 21 Feb 2000 08:56:03 +0000 (+0000) Subject: Use actual definitions of static variables. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fee912f19b62f87d3b02c6c1ca02c70f6d57d8a6;p=dealii-svn.git Use actual definitions of static variables. git-svn-id: https://svn.dealii.org/trunk@2445 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 <>