From: Wolfgang Bangerth Date: Fri, 23 Apr 2010 02:17:30 +0000 (+0000) Subject: Remove apparently stray 'typename'. X-Git-Tag: v8.0.0~6185 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=318a0fa18257aea36a9e3a67686a7515f603c6fd;p=dealii.git Remove apparently stray 'typename'. git-svn-id: https://svn.dealii.org/trunk@21034 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/mesh_worker_info.templates.h b/deal.II/deal.II/include/numerics/mesh_worker_info.templates.h index b22fbf024c..409643d926 100644 --- a/deal.II/deal.II/include/numerics/mesh_worker_info.templates.h +++ b/deal.II/deal.II/include/numerics/mesh_worker_info.templates.h @@ -103,15 +103,15 @@ namespace MeshWorker const FESubfaceValues* ps = dynamic_cast*>(&p); if (pc != 0) - fevalv[i] = typename boost::shared_ptr > ( + fevalv[i] = boost::shared_ptr > ( reinterpret_cast*>( new FEValues (pc->get_mapping(), pc->get_fe(), pc->get_quadrature(), pc->get_update_flags()))); else if (pf != 0) - fevalv[i] = typename boost::shared_ptr > ( + fevalv[i] = boost::shared_ptr > ( new FEFaceValues (pf->get_mapping(), pf->get_fe(), pf->get_quadrature(), pf->get_update_flags())); else if (ps != 0) - fevalv[i] = typename boost::shared_ptr > ( + fevalv[i] = boost::shared_ptr > ( new FESubfaceValues (ps->get_mapping(), ps->get_fe(), ps->get_quadrature(), ps->get_update_flags())); else Assert(false, ExcInternalError());