From 7a9a5fedf7a07925568b8125cd979aef74eaed11 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 21 Aug 2011 04:05:03 +0000 Subject: [PATCH] Explicitly use two template arguments even if one is defaulted. Clang trips over this otherwise (incorrectly so, but it's easy to work around anyway). git-svn-id: https://svn.dealii.org/trunk@24151 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/hp/dof_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/source/hp/dof_handler.cc b/deal.II/source/hp/dof_handler.cc index 72a3073b60..4526e71623 100644 --- a/deal.II/source/hp/dof_handler.cc +++ b/deal.II/source/hp/dof_handler.cc @@ -2757,7 +2757,7 @@ namespace hp Assert ((*i == 0) || (*i == 1), ExcInvalidBoundaryIndicator()); - DoFHandler<1>::active_cell_iterator cell; + DoFHandler<1,1>::active_cell_iterator cell; unsigned int n = 0; // search left-most cell -- 2.39.5