summaryrefslogtreecommitdiff
path: root/src/guild.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2009-12-05 13:37:40 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2009-12-05 13:38:04 +0100
commit1bce89619b241eac193a235fc790c91b7d5a8227 (patch)
tree48abd7e5650d690f306c1b313e3ca1bee2f588db /src/guild.cpp
parent5651075470ca21e9db3bc276360a9381a731a48b (diff)
downloadMana-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.cpp6
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;