From: Wolfgang Bangerth Date: Wed, 11 Jan 2017 20:26:56 +0000 (-0700) Subject: Fix missing 'spacedim' template argument. X-Git-Tag: v8.5.0-rc1~265^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18ea3629b7a55b94c15ba377c6a68e090339b1c6;p=dealii.git Fix missing 'spacedim' template argument. --- diff --git a/source/fe/fe_q_base.cc b/source/fe/fe_q_base.cc index 3e0da20bc4..4b3f1ccf9a 100644 --- a/source/fe/fe_q_base.cc +++ b/source/fe/fe_q_base.cc @@ -862,7 +862,8 @@ compare_for_face_domination (const FiniteElement &fe_other) const else return FiniteElementDomination::other_element_dominates; } - else if (const FE_Nothing *fe_nothing = dynamic_cast*>(&fe_other)) + else if (const FE_Nothing *fe_nothing + = dynamic_cast*>(&fe_other)) { if (fe_nothing->is_dominating()) {