From d4bb7d50f6923fb89dcf050f70d94f69143749c1 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Thu, 25 Feb 2010 11:28:20 -0700 Subject: Change const void to void MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Thorbjørn Lindeijer --- src/guild.cpp | 2 +- src/guild.h | 2 +- src/party.cpp | 2 +- src/party.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/guild.cpp b/src/guild.cpp index 30c004bc..65515cd7 100644 --- a/src/guild.cpp +++ b/src/guild.cpp @@ -241,7 +241,7 @@ bool Guild::isMember(const std::string &name) const return false; } -const void Guild::getNames(std::vector &names) const +void Guild::getNames(std::vector &names) const { names.clear(); MemberList::const_iterator it = mMembers.begin(), diff --git a/src/guild.h b/src/guild.h index a571597f..9b0eff9c 100644 --- a/src/guild.h +++ b/src/guild.h @@ -159,7 +159,7 @@ public: bool isMember(const std::string &name) const; - const void getNames(std::vector &names) const; + void getNames(std::vector &names) const; static Guild *getGuild(int id); diff --git a/src/party.cpp b/src/party.cpp index 3987f0fb..e01aab50 100644 --- a/src/party.cpp +++ b/src/party.cpp @@ -247,7 +247,7 @@ bool Party::isMember(const std::string &name) const return false; } -const void Party::getNames(std::vector &names) const +void Party::getNames(std::vector &names) const { names.clear(); MemberList::const_iterator it = mMembers.begin(), diff --git a/src/party.h b/src/party.h index e723cf37..d50ed7b0 100644 --- a/src/party.h +++ b/src/party.h @@ -163,7 +163,7 @@ public: bool isMember(const std::string &name) const; - const void getNames(std::vector &names) const; + void getNames(std::vector &names) const; static Party *getParty(int id); -- cgit v1.2.3-70-g09d2