From 4389e07137d08fd0739bbf6c41484c4055a5e1e5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 21 Aug 2011 00:47:50 +0000 Subject: [PATCH] In an instantiation, use whether a type was actually declared as a struct or class. This makes Clang happier. git-svn-id: https://svn.dealii.org/trunk@24142 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/base/geometry_info.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/source/base/geometry_info.cc b/deal.II/source/base/geometry_info.cc index 3a567a9612..6456bd13f6 100644 --- a/deal.II/source/base/geometry_info.cc +++ b/deal.II/source/base/geometry_info.cc @@ -1735,10 +1735,10 @@ alternating_form_at_vertices } -template class GeometryInfo<1>; -template class GeometryInfo<2>; -template class GeometryInfo<3>; -template class GeometryInfo<4>; +template struct GeometryInfo<1>; +template struct GeometryInfo<2>; +template struct GeometryInfo<3>; +template struct GeometryInfo<4>; template void -- 2.39.5