Change static const to static constexpr wherever possible

Since we require C++11, most of these consts can be constexpr.

Two `static const ld` remain non-compile-time-evaluable because
they depend on the runtime `log` function. One `static const cld`
remains non-compile-time because `std::complex<T>` doesn't become
constexpr until C++14.
This commit is contained in:
Arthur O'Dwyer
2023-08-23 09:47:28 -08:00
parent b70b339f52
commit 62629f3e70
48 changed files with 453 additions and 458 deletions
+1 -1
View File
@@ -375,7 +375,7 @@ static double gtime = 0;
double vel_x = 0, vel_y = 0;
static const double grav = 0.1;
static constexpr double grav = 0.1;
bool map_on = false;