From: Wolfgang Bangerth Date: Mon, 3 Feb 2014 15:40:53 +0000 (+0000) Subject: Minor adjustments for style and in hopes of getting MS VC++ to like the file better... X-Git-Tag: v8.2.0-rc1~895 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61de3d9a8e1c2670f1456eb341bc61a966e7fc10;p=dealii.git 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 --- 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); }