From 18ea3629b7a55b94c15ba377c6a68e090339b1c6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 11 Jan 2017 13:26:56 -0700 Subject: [PATCH] Fix missing 'spacedim' template argument. --- source/fe/fe_q_base.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()) { -- 2.39.5