summaryrefslogtreecommitdiff
path: root/src/guild.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/guild.h')
-rw-r--r--src/guild.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/guild.h b/src/guild.h
index deee8e7b..e24893b4 100644
--- a/src/guild.h
+++ b/src/guild.h
@@ -48,7 +48,7 @@ protected:
GuildMember(Guild *guild, const std::string &name);
- int mId;
+ int mId = 0;
Guild *mGuild;
};
@@ -165,11 +165,10 @@ private:
*/
Guild(short id);
- using MemberList = std::vector<GuildMember *>;
- MemberList mMembers;
+ std::vector<GuildMember *> mMembers;
std::string mName;
short mId;
- bool mCanInviteUsers;
+ bool mCanInviteUsers = false;
};
#endif // GUILD_H