From 46327de380d6f5e4bd9781b50d6250d55edee713 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 21 Aug 2011 04:21:22 +0000 Subject: [PATCH] Work around a compiler error in clang. git-svn-id: https://svn.dealii.org/trunk@24159 0785d39b-7218-0410-832d-ea1e28bc413d --- .../include/deal.II/dofs/dof_accessor.templates.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/deal.II/include/deal.II/dofs/dof_accessor.templates.h b/deal.II/include/deal.II/dofs/dof_accessor.templates.h index 8786f1b154..21eded523e 100644 --- a/deal.II/include/deal.II/dofs/dof_accessor.templates.h +++ b/deal.II/include/deal.II/dofs/dof_accessor.templates.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -2405,9 +2405,14 @@ namespace internal get_dof_indices (const DoFCellAccessor > &accessor, std::vector &dof_indices) { - // no caching for hp::DoFHandler implemented - accessor.dealii::DoFAccessor >::get_dof_indices (dof_indices, - accessor.active_fe_index()); + // no caching for + // hp::DoFHandler + // implemented + typedef + dealii::DoFAccessor > + DoFAccessor; + accessor.DoFAccessor::get_dof_indices (dof_indices, + accessor.active_fe_index()); } -- 2.39.5