diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-06-22 20:43:50 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-07-12 11:52:47 +0200 |
commit | 607489a2e6a3e3238eac0178f5c7bbc70f178f46 (patch) | |
tree | 11ca5970ff882e112073783ee310b2f1096dd9c9 /lib | |
parent | 2245a44aca8d51e331cf1211ff6e2b38c57e5246 (diff) | |
download | libquotient-607489a2e6a3e3238eac0178f5c7bbc70f178f46.tar.gz libquotient-607489a2e6a3e3238eac0178f5c7bbc70f178f46.zip |
Fix deprecation messages
[skip ci]
Diffstat (limited to 'lib')
-rw-r--r-- | lib/events/eventrelation.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/events/eventrelation.h b/lib/events/eventrelation.h index e445ee42..2a841cf1 100644 --- a/lib/events/eventrelation.h +++ b/lib/events/eventrelation.h @@ -34,11 +34,11 @@ struct QUOTIENT_API EventRelation { return { ReplacementType, std::move(eventId) }; } - [[deprecated("Use ReplyRelation variable instead")]] + [[deprecated("Use ReplyType variable instead")]] static constexpr auto Reply() { return ReplyType; } - [[deprecated("Use AnnotationRelation variable instead")]] // + [[deprecated("Use AnnotationType variable instead")]] // static constexpr auto Annotation() { return AnnotationType; } - [[deprecated("Use ReplacementRelation variable instead")]] // + [[deprecated("Use ReplacementType variable instead")]] // static constexpr auto Replacement() { return ReplacementType; } }; |