diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-30 15:24:58 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-01 20:46:53 +0100 |
commit | 8f03628ee0e4d1d1cb4e2f237e8fa695bc2cde42 (patch) | |
tree | 296e87c33020058583de7f2eab5321706e4c3896 /lib/events | |
parent | a5a261b2c0dc60f99c8caa4729683d2780677f88 (diff) | |
download | libquotient-8f03628ee0e4d1d1cb4e2f237e8fa695bc2cde42.tar.gz libquotient-8f03628ee0e4d1d1cb4e2f237e8fa695bc2cde42.zip |
Drop inline next to constexpr
Thanks to Sonar for reminding that constexpr implies inline.
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/event.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/events/event.h b/lib/events/event.h index 47f07c1d..692e88e7 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -78,9 +78,9 @@ inline event_type_t typeId() return std::decay_t<EventT>::TypeId; } -constexpr inline event_type_t UnknownEventTypeId = "?"_ls; +constexpr event_type_t UnknownEventTypeId = "?"_ls; [[deprecated("Use UnknownEventTypeId")]] -constexpr inline event_type_t unknownEventTypeId() { return UnknownEventTypeId; } +constexpr event_type_t unknownEventTypeId() { return UnknownEventTypeId; } // === Event creation facilities === @@ -258,7 +258,7 @@ using Events = EventsArray<Event>; // This macro should be used in a public section of an event class to // provide matrixTypeId() and typeId(). #define DEFINE_EVENT_TYPEID(Id_, Type_) \ - static inline constexpr event_type_t TypeId = Id_##_ls; \ + static constexpr event_type_t TypeId = Id_##_ls; \ [[deprecated("Use _Type::TypeId directly instead")]] \ static constexpr event_mtype_t matrixTypeId() { return Id_; } \ [[deprecated("Use _Type::TypeId directly instead")]] \ |