From 3002c73eebb9a7bb6eb03b9c6ac31bc232ff595b Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 9 Jul 2018 14:43:39 +0900 Subject: Fix legacy EventType values being incorrectly initialised Static storage initialisation fiasco, as it is... --- lib/events/event.h | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/lib/events/event.h b/lib/events/event.h index 06cad5d1..735e38ae 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -115,15 +115,18 @@ namespace QMatrixClient template struct EventTypeTraits { - static const event_type_t id; + static event_type_t id() + { + static const auto id = EventTypeRegistry::initializeTypeId(); + return id; + } }; template - const event_type_t EventTypeTraits::id = - EventTypeRegistry::initializeTypeId(); - - template - inline event_type_t typeId() { return EventTypeTraits>::id; } + inline event_type_t typeId() + { + return EventTypeTraits>::id(); + } inline event_type_t unknownEventTypeId() { return typeId(); } @@ -268,13 +271,22 @@ namespace QMatrixClient } \ // End of macro + namespace EventType + { + inline event_type_t logEventType(event_type_t id, const char* idName) + { + qDebug(EVENTS) << "Using id" << id << "for" << idName; + return id; + } + } + // This macro provides constants in EventType:: namespace for // back-compatibility with libQMatrixClient 0.3 event type system. #define DEFINE_EVENTTYPE_ALIAS(_Id, _Type) \ namespace EventType \ { \ [[deprecated("Use is<>(), eventCast<>() or visit<>()")]] \ - static const auto _Id = typeId<_Type>(); \ + static const auto _Id = logEventType(typeId<_Type>(), #_Id); \ } \ // End of macro -- cgit v1.2.3