From: Wolfgang 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-Tag: v8.0.0~1313 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d9d5fa449467a57c2fa4c8e2ebab22dd3f2e780;p=dealii.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