From: bangerth Date: Fri, 2 Feb 2007 17:15:45 +0000 (+0000) Subject: Add proper forward declarations of partial specializations before they are used X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9321c135edd19c582b35ea8c352f7e8397452402;p=dealii-svn.git Add proper forward declarations of partial specializations before they are used git-svn-id: https://svn.dealii.org/trunk@14402 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/dofs/dof_accessor.h b/deal.II/deal.II/include/dofs/dof_accessor.h index 0bf86fb976..7a4eaa2de1 100644 --- a/deal.II/deal.II/include/dofs/dof_accessor.h +++ b/deal.II/deal.II/include/dofs/dof_accessor.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -30,6 +30,11 @@ template class Vector; //TODO: Find a way to avoid the forward declarations and get rid of dof_handler include files. template class DoFObjectAccessor; +template class DoFObjectAccessor<0,DH>; +template class DoFObjectAccessor<1,DH>; +template class DoFObjectAccessor<2,DH>; +template class DoFObjectAccessor<3,DH>; + template class TriaRawIterator;