From: wolf Date: Sat, 31 May 2003 19:47:11 +0000 (+0000) Subject: Work around a parser problem in gcc2.95 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be51b21554a164c88814e0061f8e02d63f91a2cb;p=dealii-svn.git Work around a parser problem in gcc2.95 git-svn-id: https://svn.dealii.org/trunk@7701 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/multigrid/mg_transfer.templates.h b/deal.II/deal.II/include/multigrid/mg_transfer.templates.h index 4ccef48923..56c1bd0665 100644 --- a/deal.II/deal.II/include/multigrid/mg_transfer.templates.h +++ b/deal.II/deal.II/include/multigrid/mg_transfer.templates.h @@ -38,7 +38,7 @@ MGTransferPrebuilt::copy_to_mg (const MGDoFHandler &mg_dof_h { // forward to the correct // specialization - copy_to_mg (mg_dof_handler, dst, src, is_1d()); + copy_to_mg (mg_dof_handler, dst, src, is_1d<(dim==1)>()); } @@ -266,7 +266,7 @@ copy_to_mg (const MGDoFHandler &mg_dof_handler, { // forward to the correct // specialization - copy_to_mg (mg_dof_handler, dst, src, is_1d()); + copy_to_mg (mg_dof_handler, dst, src, is_1d<(dim==1)>()); } @@ -536,7 +536,7 @@ copy_to_mg (const MGDoFHandler &mg_dof_handler, { // forward to the correct // specialization - copy_to_mg (mg_dof_handler, dst, src, is_1d()); + copy_to_mg (mg_dof_handler, dst, src, is_1d<(dim==1)>()); }