diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-07-11 00:12:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-07-11 00:12:43 +0300 |
commit | 368afa4bc05e5b66e521b6c881cd8e8f260cf5df (patch) | |
tree | ec9bd6a3c992c46550ad9aa396f10862257db68d /src/party.h | |
parent | ee75580d40c5c444d184a6ecbeb99493ba42085a (diff) | |
download | plus-368afa4bc05e5b66e521b6c881cd8e8f260cf5df.tar.gz plus-368afa4bc05e5b66e521b6c881cd8e8f260cf5df.tar.bz2 plus-368afa4bc05e5b66e521b6c881cd8e8f260cf5df.tar.xz plus-368afa4bc05e5b66e521b6c881cd8e8f260cf5df.zip |
Add missing checks into other files.
Diffstat (limited to 'src/party.h')
-rw-r--r-- | src/party.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/party.h b/src/party.h index 47d84cf45..96eb8206e 100644 --- a/src/party.h +++ b/src/party.h @@ -154,7 +154,7 @@ class Party final : public AvatarListModel typedef std::vector<PartyMember*> MemberList; - const MemberList *getMembers() const A_WARN_UNUSED + const MemberList *getMembers() const RETURNS_NONNULL A_WARN_UNUSED { return &mMembers; } static Party *getParty(const int16_t id) A_WARN_UNUSED; |