From: Wolfgang Bangerth Date: Thu, 5 Jan 2006 09:40:26 +0000 (+0000) Subject: Fix one problem with invalid use of namespace. X-Git-Tag: v8.0.0~12708 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=331d12f4b6f4b79f7bda6ba4eadefcfa7a197de2;p=dealii.git Fix one problem with invalid use of namespace. git-svn-id: https://svn.dealii.org/trunk@11951 0785d39b-7218-0410-832d-ea1e28bc413d --- 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