]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Remove 'static' from a number of other variables in header files. 18094/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Wed, 5 Feb 2025 16:06:54 +0000 (09:06 -0700)
committerWolfgang Bangerth <bangerth@colostate.edu>
Wed, 5 Feb 2025 16:06:54 +0000 (09:06 -0700)
include/deal.II/base/numbers.h

index 245e85750525d7c01fa1ac784cc19bfea0ba7791..2a1b8918af9d5c1ba2a03a82011cdcdbf3560825 100644 (file)
@@ -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.

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.