From 2eb1da4073755c5ee455cad0f9c4216a3697d60a Mon Sep 17 00:00:00 2001 From: David Wells Date: Sun, 13 Mar 2016 20:07:10 -0400 Subject: [PATCH] Fix a clang warning. The declaration of ConstraintValues uses 'struct', so the forward declaration should also use 'struct'. --- include/deal.II/matrix_free/dof_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/matrix_free/dof_info.h b/include/deal.II/matrix_free/dof_info.h index 752b9036c4..b4d3fab061 100644 --- a/include/deal.II/matrix_free/dof_info.h +++ b/include/deal.II/matrix_free/dof_info.h @@ -37,7 +37,7 @@ namespace internal { namespace MatrixFreeFunctions { - template class ConstraintValues; + template struct ConstraintValues; /** * The class that stores the indices of the degrees of freedom for all the -- 2.39.5