diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-30 17:55:23 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-01 20:46:53 +0100 |
commit | 874ea3fae21d6b5cab12c8e524e8b25442e4cdd5 (patch) | |
tree | e97baf6d9cec7509e4abcf65f77e7d7ee7e5269d /lib/events | |
parent | 22ac47b275c2bcad5b5ff3c0cc3e10f3caaeb65b (diff) | |
download | libquotient-874ea3fae21d6b5cab12c8e524e8b25442e4cdd5.tar.gz libquotient-874ea3fae21d6b5cab12c8e524e8b25442e4cdd5.zip |
Fix more Sonar warnings
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/event.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/events/event.h b/lib/events/event.h index 4024c6f8..f12e525e 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -120,8 +120,9 @@ namespace _impl { template <typename BaseEventT> class EventFactory : public _impl::EventFactoryBase { private: - std::vector<event_ptr_tt<BaseEventT> (*)(const QJsonObject&, const QString&)> - methods {}; + using method_t = event_ptr_tt<BaseEventT> (*)(const QJsonObject&, + const QString&); + std::vector<method_t> methods {}; template <class EventT> static event_ptr_tt<BaseEventT> makeIfMatches(const QJsonObject& json, |