From: Wolfgang Bangerth Date: Mon, 23 Feb 2009 03:16:22 +0000 (+0000) Subject: Fix number of template arguments of a friend class. X-Git-Tag: v8.0.0~8026 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b16f19258d64baa13d0105ffdfc8d7d84bff388f;p=dealii.git Fix number of template arguments of a friend class. git-svn-id: https://svn.dealii.org/trunk@18408 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe_values.h b/deal.II/deal.II/include/fe/fe_values.h index 324b508213..3e8b5e70c1 100644 --- a/deal.II/deal.II/include/fe/fe_values.h +++ b/deal.II/deal.II/include/fe/fe_values.h @@ -2625,8 +2625,8 @@ class FEValuesBase : protected FEValuesData, * class, since they access internal * data. */ - template friend class FEValuesViews::Scalar; - template friend class FEValuesViews::Vector; + template friend class FEValuesViews::Scalar; + template friend class FEValuesViews::Vector; };