From d198da838098d9bcfd8bb71aa788086c86bcfff8 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Mon, 28 Mar 2005 17:40:11 +0000 Subject: [PATCH] add classname to SmartPointer git-svn-id: https://svn.dealii.org/trunk@10250 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/dof_handler.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/source/dofs/dof_handler.cc b/deal.II/deal.II/source/dofs/dof_handler.cc index db8c06f0bb..b0e9d117b0 100644 --- a/deal.II/deal.II/source/dofs/dof_handler.cc +++ b/deal.II/deal.II/source/dofs/dof_handler.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -35,7 +35,8 @@ const unsigned int DoFHandler::invalid_dof_index; template DoFHandler::DoFHandler (const Triangulation &tria) : - tria(&tria), + tria(&tria, typeid(*this).name()), + selected_fe(0, typeid(*this).name()) used_dofs (0) {} -- 2.39.5