From: bangerth Date: Wed, 13 Feb 2013 15:05:03 +0000 (+0000) Subject: Fix syntax: if we access something with X::template member then the X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb0d5cd2b3d3dcfd9ce571cc29195cd26123b347;p=dealii-svn.git Fix syntax: if we access something with X::template member then the 'template' keyword is only necessary if X is a class. This is no longer the case for X=GridTools. git-svn-id: https://svn.dealii.org/trunk@28374 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/numerics/derivative_approximation.cc b/deal.II/source/numerics/derivative_approximation.cc index cff3f585b3..09901fa551 100644 --- a/deal.II/source/numerics/derivative_approximation.cc +++ b/deal.II/source/numerics/derivative_approximation.cc @@ -770,7 +770,7 @@ approximate_cell (const Mapping &mapping, // first collect all neighbor // cells in a vector, and then // collect the data from them - GridTools::template get_active_neighbors >(cell, active_neighbors); + GridTools::get_active_neighbors >(cell, active_neighbors); // now loop over all active // neighbors and collect the