From b109185df5d68df41504058fbc393d1ff6102f52 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 5 Feb 2025 09:06:54 -0700 Subject: [PATCH] Remove 'static' from a number of other variables in header files. --- include/deal.II/base/numbers.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/deal.II/base/numbers.h b/include/deal.II/base/numbers.h index 245e857505..2a1b8918af 100644 --- a/include/deal.II/base/numbers.h +++ b/include/deal.II/base/numbers.h @@ -226,52 +226,52 @@ namespace numbers /** * e */ - static constexpr double E = 2.7182818284590452354; + constexpr double E = 2.7182818284590452354; /** * log_2 e */ - static constexpr double LOG2E = 1.4426950408889634074; + constexpr double LOG2E = 1.4426950408889634074; /** * log_10 e */ - static constexpr double LOG10E = 0.43429448190325182765; + constexpr double LOG10E = 0.43429448190325182765; /** * log_e 2 */ - static constexpr double LN2 = 0.69314718055994530942; + constexpr double LN2 = 0.69314718055994530942; /** * log_e 10 */ - static constexpr double LN10 = 2.30258509299404568402; + constexpr double LN10 = 2.30258509299404568402; /** * pi */ - static constexpr double PI = 3.14159265358979323846; + constexpr double PI = 3.14159265358979323846; /** * pi/2 */ - static constexpr double PI_2 = 1.57079632679489661923; + constexpr double PI_2 = 1.57079632679489661923; /** * pi/4 */ - static constexpr double PI_4 = 0.78539816339744830962; + constexpr double PI_4 = 0.78539816339744830962; /** * sqrt(2) */ - static constexpr double SQRT2 = 1.41421356237309504880; + constexpr double SQRT2 = 1.41421356237309504880; /** * 1/sqrt(2) */ - static constexpr double SQRT1_2 = 0.70710678118654752440; + constexpr double SQRT1_2 = 0.70710678118654752440; /** * Return @p true if the given value is a finite floating point number, i.e. -- 2.39.5