From: wolf Date: Wed, 25 Jun 2003 18:51:14 +0000 (+0000) Subject: Change style slightly at one place. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a35d5135255a4117cd9b89151f02378be8f94b4;p=dealii-svn.git Change style slightly at one place. git-svn-id: https://svn.dealii.org/trunk@7814 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_values.cc b/deal.II/deal.II/source/fe/fe_values.cc index e47beacb66..5ef093005a 100644 --- a/deal.II/deal.II/source/fe/fe_values.cc +++ b/deal.II/deal.II/source/fe/fe_values.cc @@ -624,7 +624,7 @@ FEValues::memory_consumption () const #if deal_II_dimension == 1 template <> const bool -FEFaceValuesBase::orientation_table[] = +FEFaceValuesBase<1>::orientation_table[] = { false, true }; @@ -634,7 +634,7 @@ FEFaceValuesBase::orientation_table[] = #if deal_II_dimension == 2 template <> const bool -FEFaceValuesBase::orientation_table[] = +FEFaceValuesBase<2>::orientation_table[] = { true, true, false, false }; @@ -644,7 +644,7 @@ FEFaceValuesBase::orientation_table[] = #if deal_II_dimension == 3 template <> const bool -FEFaceValuesBase::orientation_table[] = +FEFaceValuesBase<3>::orientation_table[] = { true, false, true, false, true, false };