diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2009-12-05 13:37:40 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2009-12-05 13:38:04 +0100 |
commit | 1bce89619b241eac193a235fc790c91b7d5a8227 (patch) | |
tree | 48abd7e5650d690f306c1b313e3ca1bee2f588db /src/guild.cpp | |
parent | 5651075470ca21e9db3bc276360a9381a731a48b (diff) | |
download | mana-1bce89619b241eac193a235fc790c91b7d5a8227.tar.gz mana-1bce89619b241eac193a235fc790c91b7d5a8227.tar.bz2 mana-1bce89619b241eac193a235fc790c91b7d5a8227.tar.xz mana-1bce89619b241eac193a235fc790c91b7d5a8227.zip |
Removed a few superfluous semicolons
Diffstat (limited to 'src/guild.cpp')
-rw-r--r-- | src/guild.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/guild.cpp b/src/guild.cpp index 3b30ec23..c06f2176 100644 --- a/src/guild.cpp +++ b/src/guild.cpp @@ -25,19 +25,19 @@ GuildMember::GuildMember(int guildId, int id, const std::string &name): mName(name), mId(id), mOnline(false) { mGuild = Guild::getGuild(guildId); -}; +} GuildMember::GuildMember(int guildId, int id): mId(id), mOnline(false) { mGuild = Guild::getGuild(guildId); -}; +} GuildMember::GuildMember(int guildId, const std::string &name): mName(name), mId(0), mOnline(false) { mGuild = Guild::getGuild(guildId); -}; +} Guild::GuildMap Guild::guilds; |