diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-10-29 09:21:41 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-10-29 09:41:23 +0100 |
commit | 33aa2b6bbbf6edbe2d0173a03a9869e7ed7a2660 (patch) | |
tree | 7deb1be34f9d7ecfca3bd22da6bf722ee19b5f4f /tracker-tobii-eyex/tobii-settings.cpp | |
parent | 29bf7f94eab413e25914c3939d7ff19ef0cd4c48 (diff) |
static constexpr -> constexpr
Diffstat (limited to 'tracker-tobii-eyex/tobii-settings.cpp')
-rw-r--r-- | tracker-tobii-eyex/tobii-settings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tracker-tobii-eyex/tobii-settings.cpp b/tracker-tobii-eyex/tobii-settings.cpp index c3129ec5..bc201be4 100644 --- a/tracker-tobii-eyex/tobii-settings.cpp +++ b/tracker-tobii-eyex/tobii-settings.cpp @@ -85,7 +85,7 @@ rel_settings::rel_settings() : } // there's an underflow in spline code, can't use 1e0 -static constexpr const double spline_max = 1e2; +constexpr double spline_max = 1e2; double rel_settings::gain(double value) { @@ -102,7 +102,7 @@ void rel_settings::make_spline_(part* functors, unsigned len) { part& fun = functors[k]; - static constexpr unsigned nparts = 7; + constexpr unsigned nparts = 7; for (unsigned i = 1; i <= nparts; i++) { |