From bb0d5cd2b3d3dcfd9ce571cc29195cd26123b347 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 13 Feb 2013 15:05:03 +0000 Subject: [PATCH] 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 --- deal.II/source/numerics/derivative_approximation.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5