diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-20 18:49:23 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-24 19:31:24 +0100 |
commit | 48de00ec978261c25e9c4a59479f0607cae751ff (patch) | |
tree | bac23d93014e3466af32fe820132c0019e7908ed /spline/spline.hpp | |
parent | ea29ea8095e1fe6e7c1766f87aea33650a1a485d (diff) |
spline: avoid type/variable ambiguity
Diffstat (limited to 'spline/spline.hpp')
-rw-r--r-- | spline/spline.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spline/spline.hpp b/spline/spline.hpp index 445378c3..270c4670 100644 --- a/spline/spline.hpp +++ b/spline/spline.hpp @@ -102,7 +102,7 @@ class OTR_SPLINE_EXPORT spline : public base_spline void disconnect_signals(); - mutex _mutex { mutex::Recursive }; + mutex mtx { mutex::Recursive }; std::shared_ptr<spline_detail::settings> s; QMetaObject::Connection conn_changed, conn_maxx, conn_maxy; mutable std::vector<float> data = std::vector<float>(value_count, float(-16)); |