From ec716720501fe19fc459556554ece5f04669dd03 Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 23 Jan 2003 22:41:53 +0000 Subject: [PATCH] Move definition of static member variables to .cc file. git-svn-id: https://svn.dealii.org/trunk@6948 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/numerics/derivative_approximation.h | 4 ++-- deal.II/deal.II/source/numerics/derivative_approximation.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/deal.II/include/numerics/derivative_approximation.h b/deal.II/deal.II/include/numerics/derivative_approximation.h index 03a6848b94..3ece87276e 100644 --- a/deal.II/deal.II/include/numerics/derivative_approximation.h +++ b/deal.II/deal.II/include/numerics/derivative_approximation.h @@ -278,7 +278,7 @@ class DerivativeApproximation * @p{get_projected_derivative} * to work. */ - static const UpdateFlags update_flags = update_values; + static const UpdateFlags update_flags; /** * Declare the data type which @@ -358,7 +358,7 @@ class DerivativeApproximation * @p{get_projected_derivative} * to work. */ - static const UpdateFlags update_flags = update_gradients; + static const UpdateFlags update_flags; /** * Declare the data type which diff --git a/deal.II/deal.II/source/numerics/derivative_approximation.cc b/deal.II/deal.II/source/numerics/derivative_approximation.cc index 0c3fc70813..889aa73478 100644 --- a/deal.II/deal.II/source/numerics/derivative_approximation.cc +++ b/deal.II/deal.II/source/numerics/derivative_approximation.cc @@ -38,10 +38,10 @@ static T sqr (const T t) // static variables template -const UpdateFlags DerivativeApproximation::Gradient::update_flags; +const UpdateFlags DerivativeApproximation::Gradient::update_flags = update_values; template -const UpdateFlags DerivativeApproximation::SecondDerivative::update_flags; +const UpdateFlags DerivativeApproximation::SecondDerivative::update_flags = update_gradients; -- 2.39.5