diff options
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 d3293d871..51cfc2f3b 100644 --- a/src/party.h +++ b/src/party.h @@ -127,7 +127,7 @@ class Party final : public AvatarListModel * @return Returns the number of members in the party. */ int getNumberOfElements() override final A_WARN_UNUSED - { return static_cast<int>(mMembers.size()); } + { return CAST_S32(mMembers.size()); } Avatar *getAvatarAt(const int i) override final; |