From 61de3d9a8e1c2670f1456eb341bc61a966e7fc10 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 3 Feb 2014 15:40:53 +0000 Subject: [PATCH] Minor adjustments for style and in hopes of getting MS VC++ to like the file better than it used to. git-svn-id: https://svn.dealii.org/trunk@32391 0785d39b-7218-0410-832d-ea1e28bc413d --- .../deal.II/numerics/derivative_approximation.h | 2 -- .../source/numerics/derivative_approximation.cc | 16 ++++++++-------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/deal.II/include/deal.II/numerics/derivative_approximation.h b/deal.II/include/deal.II/numerics/derivative_approximation.h index 002ec01137..cc43eeb479 100644 --- a/deal.II/include/deal.II/numerics/derivative_approximation.h +++ b/deal.II/include/deal.II/numerics/derivative_approximation.h @@ -271,7 +271,6 @@ public: * In a parallel computation the @p solution vector needs to contain the * locally relevant unknowns. */ - template class DH, class InputVector, int order, int spacedim> static void approximate_derivative_tensor (const Mapping &mapping, @@ -284,7 +283,6 @@ public: /** * Same as above, with mapping=MappingQ1@(). */ - template class DH, class InputVector, int order, int spacedim> static void approximate_derivative_tensor (const DH &dof, diff --git a/deal.II/source/numerics/derivative_approximation.cc b/deal.II/source/numerics/derivative_approximation.cc index 85edde6ed0..76ffcdbac4 100644 --- a/deal.II/source/numerics/derivative_approximation.cc +++ b/deal.II/source/numerics/derivative_approximation.cc @@ -618,14 +618,14 @@ approximate_derivative_tensor (const DH Tensor &derivative, const unsigned int component) { - // just call the respective function with Q1 - // mapping - approximate_derivative_tensor (StaticMappingQ1::mapping, - dof, - solution, - cell, - derivative, - component); + // just call the respective function with Q1 mapping + approximate_derivative_tensor + (StaticMappingQ1::mapping, + dof, + solution, + cell, + derivative, + component); } -- 2.39.5