From 33aa2b6bbbf6edbe2d0173a03a9869e7ed7a2660 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 29 Oct 2017 09:21:41 +0100 Subject: static constexpr -> constexpr --- proto-fsuipc/ftnoir_protocol_fsuipc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proto-fsuipc') diff --git a/proto-fsuipc/ftnoir_protocol_fsuipc.cpp b/proto-fsuipc/ftnoir_protocol_fsuipc.cpp index 11d954ab..959408fe 100644 --- a/proto-fsuipc/ftnoir_protocol_fsuipc.cpp +++ b/proto-fsuipc/ftnoir_protocol_fsuipc.cpp @@ -51,7 +51,7 @@ int fsuipc::scale2AnalogLimits(t x, t min_x, t max_x) template static inline bool check_float_fresh(t x, t y) { - static constexpr t eps = t(1e-4); + constexpr t eps = t(1e-4); return std::fabs(x - y) >= eps; } -- cgit v1.2.3