From c7b267c6d046d1b8bd72b3c94ec012457458e278 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 21 Aug 2011 04:29:02 +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@24162 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/constraint_matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/include/deal.II/lac/constraint_matrix.h b/deal.II/include/deal.II/lac/constraint_matrix.h index 94f5364fe2..14140084e7 100644 --- a/deal.II/include/deal.II/lac/constraint_matrix.h +++ b/deal.II/include/deal.II/lac/constraint_matrix.h @@ -49,7 +49,7 @@ template struct IsBlockMatrix; namespace internals { - struct GlobalRowsFromLocal; + class GlobalRowsFromLocal; } @@ -163,7 +163,7 @@ class ConstraintMatrix : public Subscriptor */ right_object_wins }; - + /** * Constructor. The supplied IndexSet * defines which indices might be -- 2.39.5