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 /options | |
parent | 29bf7f94eab413e25914c3939d7ff19ef0cd4c48 (diff) |
static constexpr -> constexpr
Diffstat (limited to 'options')
-rw-r--r-- | options/slider.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/slider.cpp b/options/slider.cpp index 147496cb..33000ee9 100644 --- a/options/slider.cpp +++ b/options/slider.cpp @@ -46,7 +46,7 @@ bool slider_value::operator==(const slider_value& v) const { using std::fabs; - static constexpr double eps = 2e-3; + constexpr double eps = 2e-3; #if 1 return (fabs(v.cur_ - cur_) < eps && |