From: Wolfgang Bangerth Date: Mon, 3 Feb 2014 14:58:05 +0000 (+0000) Subject: Avoid what I believe is an unnecessary '::template ' in hopes that it makes MS VC... X-Git-Tag: v8.2.0-rc1~896 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ceffd04199b7c9b7a4e4d0ed88c3f9635b632516;p=dealii.git Avoid what I believe is an unnecessary '::template ' in hopes that it makes MS VC++ happier. git-svn-id: https://svn.dealii.org/trunk@32389 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/hp/dof_handler.cc b/deal.II/source/hp/dof_handler.cc index b083369760..467df4e754 100644 --- a/deal.II/source/hp/dof_handler.cc +++ b/deal.II/source/hp/dof_handler.cc @@ -2643,7 +2643,7 @@ namespace hp for (; cell != endc; ++cell) next_free_dof - = dealii::internal::hp::DoFHandler::Implementation::template distribute_dofs_on_cell (cell, + = dealii::internal::hp::DoFHandler::Implementation::distribute_dofs_on_cell (cell, next_free_dof); number_cache.n_global_dofs = next_free_dof;