From: Wolfgang Bangerth Date: Sun, 21 Aug 2011 04:01:14 +0000 (+0000) Subject: In a forward declaration, use whether a type was actually declared as X-Git-Tag: v8.0.0~3620 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af38d3426ab82654a4301c6a408217a2ea4d71ae;p=dealii.git In a forward declaration, use whether a type was actually declared as a struct or class. This makes Clang happier. git-svn-id: https://svn.dealii.org/trunk@24148 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/numerics/vectors.h b/deal.II/include/deal.II/numerics/vectors.h index d1de0b84c0..3f40890cff 100644 --- a/deal.II/include/deal.II/numerics/vectors.h +++ b/deal.II/include/deal.II/numerics/vectors.h @@ -28,7 +28,7 @@ DEAL_II_NAMESPACE_OPEN template class Function; -template class FunctionMap; +template struct FunctionMap; template class Quadrature; template class QGauss;