aboutsummaryrefslogtreecommitdiff
path: root/lib/events
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-12-30 17:55:23 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-01-01 20:46:53 +0100
commit874ea3fae21d6b5cab12c8e524e8b25442e4cdd5 (patch)
treee97baf6d9cec7509e4abcf65f77e7d7ee7e5269d /lib/events
parent22ac47b275c2bcad5b5ff3c0cc3e10f3caaeb65b (diff)
downloadlibquotient-874ea3fae21d6b5cab12c8e524e8b25442e4cdd5.tar.gz
libquotient-874ea3fae21d6b5cab12c8e524e8b25442e4cdd5.zip
Fix more Sonar warnings
Diffstat (limited to 'lib/events')
-rw-r--r--lib/events/event.h5
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,