diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-13 13:19:31 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-13 13:19:31 +0200 |
commit | 74d9f5e31428ef362033a63c10b781d943c5e5a5 (patch) | |
tree | 71e11ed620fa1d76577df07846e910970fe9210b /opentrack-compat | |
parent | 41a92ea7401c89c5696b3e1b2fa239458a92ff73 (diff) |
many: remove unneeded implicit type conversion double <-> float
Diffstat (limited to 'opentrack-compat')
-rw-r--r-- | opentrack-compat/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack-compat/options.cpp b/opentrack-compat/options.cpp index 550fec24..9dcb10ab 100644 --- a/opentrack-compat/options.cpp +++ b/opentrack-compat/options.cpp @@ -160,7 +160,7 @@ pbundle opt_singleton::bundle(const opt_singleton::k &key) qDebug() << "bundle +" << key; auto shr = std::make_shared<v>(key); - implsgl_data[key] = tt(cnt(1), shr); + implsgl_data[key] = tt(1, shr); return shr; } |