From 331d12f4b6f4b79f7bda6ba4eadefcfa7a197de2 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 5 Jan 2006 09:40:26 +0000 Subject: [PATCH] Fix one problem with invalid use of namespace. git-svn-id: https://svn.dealii.org/trunk@11951 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/dofs/dof_tools.h | 7 +++++-- deal.II/deal.II/include/fe/fe_tools.h | 7 +++++-- deal.II/deal.II/include/fe/select_fe_values.h | 5 ++++- .../deal.II/include/numerics/derivative_approximation.h | 7 +++++-- 4 files changed, 19 insertions(+), 7 deletions(-) diff --git a/deal.II/deal.II/include/dofs/dof_tools.h b/deal.II/deal.II/include/dofs/dof_tools.h index 04279397d3..1fffaf1d5e 100644 --- a/deal.II/deal.II/include/dofs/dof_tools.h +++ b/deal.II/deal.II/include/dofs/dof_tools.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -30,7 +30,10 @@ template class Function; template class Point; template class FiniteElement; template class DoFHandler; -template class hp::DoFHandler; +namespace hp +{ + template class DoFHandler; +} template class MGDoFHandler; class ConstraintMatrix; template