From 80e103e44ba9dda37ff7314e374bd385bc4dcc6f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 21 Aug 2011 00:14:40 +0000 Subject: [PATCH] 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@24130 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/fe/fe_q.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/include/deal.II/fe/fe_q.h b/deal.II/include/deal.II/fe/fe_q.h index b9855d8771..581e861c58 100644 --- a/deal.II/include/deal.II/fe/fe_q.h +++ b/deal.II/include/deal.II/fe/fe_q.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by the deal.II authors +// Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -582,7 +582,7 @@ class FE_Q : public FE_Poly,dim,spacedim> */ template friend class FE_Q; - friend class FE_Q::Implementation; + friend struct FE_Q::Implementation; }; -- 2.39.5